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