Files

15 lines
336 B
JavaScript
Raw Permalink Normal View History

2025-04-04 00:02:04 -06:00
// routes/product.js
const express = require("express");
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);
router.post("/delHistory", DelHistory);
router.post("/addHistory", AddHistory);
2025-04-04 00:02:04 -06:00
module.exports = router;