add: error_code api

This commit is contained in:
2025-12-02 15:22:20 +07:00
parent feff905d8f
commit f797685a4f
6 changed files with 488 additions and 55 deletions

View File

@@ -18,6 +18,7 @@ const notificationError = require("./notification_error.route")
const notificationErrorSparepart = require("./notification_error_sparepart.route")
const sparepart = require("./sparepart.route")
const notificationErrorLog = require("./notification_error_log.route")
const errorCode = require("./error_code.route")
router.use("/auth", auth);
router.use("/user", users);
@@ -38,5 +39,6 @@ router.use("/notification", notificationError)
router.use("/notification-sparepart", notificationErrorSparepart)
router.use("/sparepart", sparepart)
router.use("/notification-log", notificationErrorLog)
router.use("/error-code", errorCode)
module.exports = router;