UNPKG

185 BJavaScriptView Raw
1exports.content = function(app, io) {
2 //you can use this page for additional, custom routes;
3 app.get("/",function(req,res,next){
4 res.send("This is an example server");
5 });
6};