Add liveness check endpoint #1

Merged
slvrbckt merged 1 commits from feature/health_check_endpoint into github 2021-04-09 09:19:52 +00:00

5
scripts/health.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = function (robot) {
robot.router.get('/health/live', (req, res) => {
res.send('OK');
});
}