API is starting to run

This commit is contained in:
Gaël Métais
2014-12-05 16:14:08 +01:00
parent e18cd87a07
commit 906f0876a0
18 changed files with 423 additions and 108 deletions
+13
View File
@@ -0,0 +1,13 @@
var UiController = function(app) {
'use strict';
// Create a new run
app.get('/', function(req, res) {
res.setHeader('Content-Type', 'text/html');
res.send('Test');
});
};
module.exports = UiController;