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