2025-04-04 00:02:04 -06:00
|
|
|
// routes/product.js
|
|
|
|
|
const express = require("express");
|
2025-04-13 12:52:21 -06:00
|
|
|
const {
|
|
|
|
|
HistoryByUserId,
|
|
|
|
|
DelHistory,
|
|
|
|
|
AddHistory,
|
|
|
|
|
} = require("../controllers/history");
|
2025-04-04 00:02:04 -06:00
|
|
|
const router = express.Router();
|
|
|
|
|
|
2025-04-12 13:10:17 -06:00
|
|
|
router.post("/getHistory", HistoryByUserId);
|
2025-04-13 12:52:21 -06:00
|
|
|
router.post("/delHistory", DelHistory);
|
|
|
|
|
router.post("/addHistory", AddHistory);
|
2025-04-04 00:02:04 -06:00
|
|
|
|
|
|
|
|
module.exports = router;
|