UNPKG

fastify-cli

Version:

Run a fastify route with one command!

11 lines (8 loc) 180 B
'use strict' module.exports = function (fastify, options, next) { fastify.get('/', (req, reply) => reply.send(options)) next() } module.exports.options = { hello: 'test' }