diff --git a/src/app.ts b/src/app.ts index cb5f444..3634c7e 100644 --- a/src/app.ts +++ b/src/app.ts @@ -62,6 +62,12 @@ const app = new Elysia({ // all routes here app.use(api); +// Debug - Print all registered routes +console.log("All registered routes:"); +app.routes.forEach((route) => { + console.log(`${route.method} ${route.path}`); +}); + app.get("/", () => "API root is working"); app.listen(ENV.SERVER_PORT, () => {