UNPKG

@fastify/autoload

Version:
14 lines (11 loc) 258 B
'use strict' const fp = require('fastify-plugin') module.exports = fp(function (fastify, opts, next) { fastify.get('/a', function (_request, reply) { reply.send(opts) }) next() }, { dependencies: ['plugin-b', 'plugin-c'], name: 'plugin-a' })