crud: brand sparepart

This commit is contained in:
2025-11-13 14:08:27 +07:00
parent 342c06e49c
commit c8149c2359
21 changed files with 394 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ const unit = require("./unit.route")
const UserSchedule = require("./user_schedule.route")
const historyValue = require("./history_value.route")
const contact = require("./contact.route")
const brandSparePart = require("./brand_sparepart.route")
router.use("/auth", auth);
router.use("/user", users);
@@ -30,6 +31,7 @@ router.use("/unit", unit);
router.use("/user-schedule", UserSchedule)
router.use("/history", historyValue)
router.use("/contact", contact)
router.use("/brand-sparepart", brandSparePart)
module.exports = router;