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