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