Browse Source

v1.1

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

4
server.js

@ -21,14 +21,14 @@ router.get("/timeframe",function(req, res) {
.send(JSON.stringify(response)) .send(JSON.stringify(response))
.end(); .end();
}); });
/*
router.get("/participants",function(req, res) { router.get("/participants",function(req, res) {
var response = [ "Nicolas", "Manfred" ]; var response = [ "Nicolas", "Manfred" ];
res.type('application/json') res.type('application/json')
.send(JSON.stringify(response)) .send(JSON.stringify(response))
.end(); .end();
}); });
*/
app.use("/",router); app.use("/",router);
app.use("*",function(req, res) { app.use("*",function(req, res) {

Loading…
Cancel
Save