root.js 158 B

1234567
  1. 'use strict'
  2. module.exports = async function (fastify, opts) {
  3. fastify.get('/', async function (request, reply) {
  4. return { root: true }
  5. })
  6. }