strong-tie/inbound-calls
0
1'use strict'2 3module.exports = function (fastify, opts, done) {4 fastify5 .get('/', opts, function (req, reply) {6 reply.send({ hello: 'world' })7 })8 .post('/', opts, function (req, reply) {9 reply.send({ hello: 'world' })10 })11 done()12}13 