import { FastifyInstance, FastifyPluginAsync, FastifyPluginOptions } from 'fastify' const router: FastifyPluginAsync = async (app: FastifyInstance, opts: FastifyPluginOptions) => { //TODO: Add controllers declaration here // app.get() } export default router;