import { FastifyInstance } from "fastify"; async function index(fastify: FastifyInstance): Promise { fastify.get("/", async () => "Hello, World!"); } export default index;