Browse Source

back to v1

master
Nicolas Massé 7 years ago
committed by GitHub
parent
commit
dff785032a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      server.js

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

Loading…
Cancel
Save