added Review Feature

This commit is contained in:
Mann Patel
2025-04-04 00:02:04 -06:00
parent 643b9e357c
commit 75c7675601
13 changed files with 925 additions and 140 deletions

View File

@@ -0,0 +1,8 @@
// routes/product.js
const express = require("express");
const { HistoryByUserId } = require("../controllers/history");
const router = express.Router();
router.post("/history", HistoryByUserId);
module.exports = router;