1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/unleash-server/lib/api.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

5 lines
142 B
JavaScript

module.exports = function (app) {
app.get('/features', function (req, res) {
res.send('some nice json features here!');
});
};