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