XWWitPark/witpark_server/routes/root.js

8 lines
150 B
JavaScript
Raw 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 { root: true }
})
}