Skip to content

Commit

Permalink
feat: update the root router to include the notification modules
Browse files Browse the repository at this point in the history
  • Loading branch information
elskow committed Dec 10, 2024
1 parent 156a0b6 commit 6b08023
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/routes/v1/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import tutoriesRouter from "@/module/tutories/tutories.route";
import orderRouter from "@/module/order/order.route";
import chatRouter from "@/module/chat/chat.route";
import reviewRouter from "@/module/review/review.route";
import notificationRouter from "@/module/notification/notification.route";

const v1Router = Router();

Expand All @@ -18,5 +19,6 @@ v1Router.use("/tutors", tutorRouter);
v1Router.use("/orders", orderRouter);
v1Router.use("/chat", chatRouter);
v1Router.use("/reviews", reviewRouter);
v1Router.get("/notification", notificationRouter);

export default v1Router;

0 comments on commit 6b08023

Please sign in to comment.