diff --git a/server.js b/server.js index e0c7954..ab36ddf 100644 --- a/server.js +++ b/server.js @@ -21,14 +21,14 @@ router.get("/timeframe",function(req, res) { .send(JSON.stringify(response)) .end(); }); -/* + router.get("/participants",function(req, res) { var response = [ "Sebastien", "Nicolas" ]; res.type('application/json') .send(JSON.stringify(response)) .end(); }); -*/ + app.use("/",router); app.use("*",function(req, res) {