update 00000

This commit is contained in:
smfahim25 2025-03-19 10:23:59 +06:00
parent 48f8013dfe
commit 17b33bc81a

View file

@ -62,6 +62,12 @@ const app = new Elysia({
// all routes here // all routes here
app.use(api); 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.get("/", () => "API root is working");
app.listen(ENV.SERVER_PORT, () => { app.listen(ENV.SERVER_PORT, () => {