This commit is contained in:
2024-01-23 23:15:29 -05:00
parent eecb79abb8
commit 3a0163fd42
7 changed files with 88 additions and 15 deletions

View File

@ -87,5 +87,9 @@ router.get("/api", function (req, res, next) {
res.render("api");
});
// sensor data
router.get("/sensor-data", function (req, res, next) {
res.render("sensor-data");
});
module.exports = router;