added healthcheck route

This commit is contained in:
2020-10-08 11:39:57 +02:00
parent 004d6c6718
commit 75b7fe3306
2 changed files with 11 additions and 0 deletions

9
routes/routeHealth.js Normal file
View File

@@ -0,0 +1,9 @@
const express = require("express");
var router = express.Router();
router.get("/", (req, res) => {
res.sendStatus(200);
});
module.exports = router;