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