Files
fastify-beginner-guide/node_modules/fastify/examples/plugin.js

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()
}