Skip to content

Commit

Permalink
Merge branch 'ft-order-tracking-#91' of https://github.com/atlp-rwand…
Browse files Browse the repository at this point in the history
…a/dynamites-ecomm-be into ft-order-tracking-#91
  • Loading branch information
bertrandshema committed May 30, 2024
2 parents 32e7341 + 16d78b7 commit 19885b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import cartRoutes from '../routes/cartRoutes';
import couponRouter from './couponRoute';
import chekoutRoutes from './checkoutRoutes';
import reviewRoute from './reviewRoutes';
import orderRoutes from './orderRoutes';

const router = Router();

Expand All @@ -19,6 +20,7 @@ router.use('/buyer', buyerRoutes);
router.use('/cart', cartRoutes);
router.use('/coupons', couponRouter);
router.use('/checkout', chekoutRoutes);
router.use('/review',reviewRoute)
router.use('/review', reviewRoute);
router.use('/order', orderRoutes);

export default router;

0 comments on commit 19885b9

Please sign in to comment.