Add liveness check endpoint #1

Merged
greg merged 2 commits from feature/health_check_endpoint into master 2021-04-09 11:17:13 +00:00
Showing only changes of commit e29b67749f - Show all commits

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');
});
}