From fce07fcf41b036edd36fa302ed4d38b969b07f57 Mon Sep 17 00:00:00 2001 From: tigerxinsights Date: Tue, 20 Jan 2026 15:24:13 +0530 Subject: [PATCH] Update index.ts --- backend/src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/src/index.ts b/backend/src/index.ts index eb925d1..8dadb3c 100644 --- a/backend/src/index.ts +++ b/backend/src/index.ts @@ -28,8 +28,11 @@ if (process.env.NODE_ENV !== "test") { } // Mount API routes + + + app.route("/api/v1/user", userRouter); app.route("/api/v1/blog", blogRouter); app.get("/health", (c) => c.json({ ok: true })); -export default app; \ No newline at end of file +export default app;