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