Skip to content

Commit

Permalink
Add subscription router to routes
Browse files Browse the repository at this point in the history
  • Loading branch information
sayinmehmet47 committed Mar 29, 2024
1 parent 5f1c9e4 commit a22d372
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions backend/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ import express from 'express';
import { booksRouter } from './api/books';
import { userRouter } from './api/user';
import { messagesRouter } from './api/messages';
import { subscriptionRouter } from './api/subscription';

const router = express.Router();

router.use('/books', booksRouter);
router.use('/user', userRouter);
router.use('/messages', messagesRouter);
router.use('/subscription', subscriptionRouter);

export default router;

0 comments on commit a22d372

Please sign in to comment.