From 691ee636bdb9d1fa2badfbea14bbcc8ec23eaa32 Mon Sep 17 00:00:00 2001 From: Leopoldadmin Date: Mon, 22 Jun 2026 05:45:35 +0000 Subject: [PATCH] feat: add ai routes placeholder file --- backend/src/routes/ai.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 backend/src/routes/ai.ts diff --git a/backend/src/routes/ai.ts b/backend/src/routes/ai.ts new file mode 100644 index 0000000..05b033e --- /dev/null +++ b/backend/src/routes/ai.ts @@ -0,0 +1,5 @@ +import { FastifyInstance } from 'fastify'; + +export default async function aiRoutes(fastify: FastifyInstance) { + // Placeholder for ai routes +}