const fastify = require('../../../../')() // Declare a route fastify.get('/', function (request, reply) { reply.send({ hello: 'world' }) }) module.exports = fastify