UNPKG

@discoveryjs/cli

Version:

CLI tools to serve & build projects based on Discovery.js

7 lines (6 loc) 143 B
module.exports = function(app) { app.get('/healthz', (_, res) => { res.status(200); res.send({ status: 'OK' }); }); };