Merge pull request 'Add liveness check endpoint' (#1) from feature/health_check_endpoint into master

Reviewed-on: #1
This commit is contained in:
Greg 2021-04-09 11:17:13 +00:00
commit e02c3bb9b6
1 changed files with 5 additions and 0 deletions

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