root.js 162 B

123456789
  1. 'use strict'
  2. module.exports = function (fastify, opts, next) {
  3. fastify.get('/', function (request, reply) {
  4. reply.send({ root: true });
  5. });
  6. next();
  7. }