diff --git a/scripts/health.js b/scripts/health.js new file mode 100644 index 0000000..22effb7 --- /dev/null +++ b/scripts/health.js @@ -0,0 +1,5 @@ +module.exports = function (robot) { + robot.router.get('/health/live', (req, res) => { + res.send('OK'); + }); +}