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;