Files
2026-01-22 15:49:12 +01:00

13 lines
262 B
JavaScript

'use strict'
module.exports = function (fastify, opts, done) {
fastify
.get('/', opts, function (req, reply) {
reply.send({ hello: 'world' })
})
.post('/', opts, function (req, reply) {
reply.send({ hello: 'world' })
})
done()
}