enzostvs's picture
enzostvs HF staff
try another way
f4aba6e
raw
history blame
150 Bytes
'use strict'
module.exports = async function (fastify, opts) {
fastify.get('/', async function (request, reply) {
return { root: true }
})
}