Files
Node.js-14-Cookbook/Chapter11/fastify-microservice/plugins/support.js
T
2020-11-15 01:13:01 +00:00

13 lines
279 B
JavaScript

'use strict'
const fp = require('fastify-plugin')
// the use of fastify-plugin is required to be able
// to export the decorators to the outer scope
module.exports = fp(async function (fastify, opts) {
fastify.decorate('someSupport', function () {
return 'hugs'
})
})