mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
1a68cecb11
To start server locally: npm run start-dev To execute tests: npm test
5 lines
142 B
JavaScript
5 lines
142 B
JavaScript
module.exports = function (app) {
|
|
app.get('/features', function (req, res) {
|
|
res.send('some nice json features here!');
|
|
});
|
|
}; |