Skip to content

Commit

Permalink
buyer should checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisegithub committed May 27, 2024
1 parent eb1df6e commit 6c0963c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import productRoutes from './productRoutes';
import categoryRoutes from './categoryRoutes';
import buyerRoutes from './buyerRoutes';
import cartRoutes from '../routes/cartRoutes';
import couponRouter from './couponRoute'

import couponRouter from './couponRoute';
import chekoutRoutes from './checkoutRoutes';
const router = Router();

router.use('/user', userRouter);
Expand All @@ -15,6 +15,7 @@ router.use('/product', productRoutes);
router.use('/category', categoryRoutes);
router.use('/buyer', buyerRoutes);
router.use('/cart', cartRoutes);
router.use('/coupons', couponRouter)
router.use('/coupons', couponRouter);
router.use('/checkout', chekoutRoutes);

export default router;

0 comments on commit 6c0963c

Please sign in to comment.