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