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 +}