UNPKG

fastify-cli

Version:

Run a fastify route with one command!

8 lines (6 loc) 156 B
'use strict' module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { return 'this is an example' }) }