File size: 154 Bytes
5a8d324
f4aba6e
 
5a8d324
 
 
 
1
2
3
4
5
6
7
8
"use strict";

module.exports = async function (fastify, opts) {
  fastify.get("/", async function (request, reply) {
    return { root: true };
  });
};