add: crud contact

This commit is contained in:
2025-11-12 14:22:08 +07:00
parent 93b6b1b15e
commit d2d6ce2ab1
6 changed files with 318 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ const status = require("./status.route");
const unit = require("./unit.route")
const UserSchedule = require("./user_schedule.route")
const historyValue = require("./history_value.route")
const contact = require("./contact.route")
router.use("/auth", auth);
router.use("/user", users);
@@ -28,6 +29,7 @@ router.use("/status", status);
router.use("/unit", unit);
router.use("/user-schedule", UserSchedule)
router.use("/history", historyValue)
router.use("/contact", contact)
module.exports = router;