19 linhas
341 B
JavaScript
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();
|
|
};
|
|
};
|
|
|