Arquivos
nodecopter_voice/routes.js
T
2013-11-23 18:33:59 +00:00

19 linhas
341 B
JavaScript

exports.index = function(req, res){
res.render('index', {'title':'HI THERE'});
};
exports.land = function(client){
return function(req, res) {
console.log("Land!");
client.land();
};
};
exports.takeoff = function(client){
return function(req, res) {
console.log("Takeoff!");
client.takeoff();
};
};