CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
plugin.helper.js9 linesDownload Raw Back to test
1'use strict'2 3const fp = require('fastify-plugin')4 5module.exports = fp(function (fastify, opts, done) {6  fastify.decorate('test', () => {})7  done()8})9