Browse Source

v1.1

master
Nicolas Massé 8 years ago
parent
commit
4aaf7250e7
  1. 4
      server.js

4
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 = [ "Mark", "Nicolas" ];
res.type('application/json')
.send(JSON.stringify(response))
.end();
});
*/
app.use("/",router);
app.use("*",function(req, res) {

Loading…
Cancel
Save