UNPKG

fastify-cli

Version:

Run a fastify route with one command!

8 lines (6 loc) 150 B
'use strict' module.exports = async function (fastify, opts) { fastify.get('/', async function (request, reply) { return { root: true } }) }