UNPKG

fastify-cli

Version:

Run a fastify route with one command!

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