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);