UNPKG

fastify-cli

Version:

Run a fastify route with one command!

12 lines (10 loc) 266 B
import fp from 'fastify-plugin' import sensible from '@fastify/sensible' /** * This plugins adds some utilities to handle http errors * * @see https://github.com/fastify/fastify-sensible */ export default fp(async (fastify) => { fastify.register(sensible) })