enzostvs's picture
enzostvs HF staff
run prettier
5a8d324
raw
history blame contribute delete
154 Bytes
"use strict";
module.exports = async function (fastify, opts) {
fastify.get("/", async function (request, reply) {
return { root: true };
});
};