CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
plugin.js13 linesDownload Raw Back to examples
1'use strict'2 3module.exports = function (fastify, opts, done) {4  fastify5    .get('/', opts, function (req, reply) {6      reply.send({ hello: 'world' })7    })8    .post('/', opts, function (req, reply) {9      reply.send({ hello: 'world' })10    })11  done()12}13