Spaces:
Running
Running
File size: 150 Bytes
f4aba6e |
1 2 3 4 5 6 7 8 |
'use strict'
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
return { root: true }
})
}
|