import { FastifyInstance } from 'fastify'; export const addRoutes = (SERVER: FastifyInstance) => { SERVER.get('/', async (_, reply) => { reply.send({hello: 'world'}) }); }