teltonika

This commit is contained in:
Pringgosutono
2025-10-30 10:33:55 +07:00
parent 84a9ce3f4c
commit fd304e1f61
7 changed files with 1355 additions and 492 deletions

8
routes/listen.js Normal file
View File

@ -0,0 +1,8 @@
const ListenController = require("../controllers/ListenController")
const { PATH_URL } = process.env
exports.use = function (app) {
// LISTEN
app.post(PATH_URL + "/listen/gps", ListenController.gps)
app.post(PATH_URL + "/listen/teltonika", ListenController.teltonika)
}