support.js 287 B

123456789101112
  1. 'use strict'
  2. const fp = require('fastify-plugin')
  3. // the use of fastify-plugin is required to be able
  4. // to export the decorators to the outer scope
  5. module.exports = fp(async function (fastify, opts) {
  6. fastify.decorate('someSupport', function () {
  7. return 'hugs'
  8. })
  9. })