From f9da806ec9e28e30278198dc4d12d47231712cbd Mon Sep 17 00:00:00 2001 From: smfahim25 Date: Wed, 19 Mar 2025 10:39:39 +0600 Subject: [PATCH] update 00000 --- src/app.ts | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/app.ts b/src/app.ts index a30e148..eedb6f3 100644 --- a/src/app.ts +++ b/src/app.ts @@ -58,18 +58,6 @@ const app = new Elysia({ console.error(error); }); -const api = app.group("/api", (app) => { - app.get("/", () => "API root is working"); - - // Include all your other routes inside this group - app.use(authRoute); - app.use(projectRoutes); - app.use(uploadRoutes); - app.use(downloadRoute); - - return app; -}); - // all routes here app.use(api);