UNPKG

262 BJavaScriptView Raw
1'use strict'
2
3module.exports = function (fastify, opts, next) {
4 fastify
5 .get('/', opts, function (req, reply) {
6 reply.send({ hello: 'world' })
7 })
8 .post('/', opts, function (req, reply) {
9 reply.send({ hello: 'world' })
10 })
11 next()
12}