1 | 'use strict'
|
2 |
|
3 | module.exports = function (fastify, opts, done) {
|
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 | done()
|
12 | }
|