XWWitPark/witpark_server/routes/example/index.js

8 lines
156 B
JavaScript
Raw Permalink Normal View History

2024-09-12 00:10:00 +00:00
'use strict'
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
return 'this is an example'
})
}