1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/unleash-server/lib/routes.js
ivaosthu 1a68cecb11 Closes #16 - Initial express based server setup.
To start server locally:
npm run start-dev

To execute tests:
npm test
2014-10-20 13:03:43 +02:00

7 lines
127 B
JavaScript

module.exports = function (app) {
app.get('/health', function (req, res) {
res.json({health: 'GOOD'});
});
};