This commit is contained in:
2016-01-30 01:54:50 -05:00
parent 5854426e7e
commit 003895079d
2 changed files with 2 additions and 2 deletions

View File

@ -73,14 +73,12 @@ router.get('/destroy/:name', function(req, res, next){
router.get('/info/:name', function(req, res, next){
lxc.info(req.params.name, function(data){
console.log('info', arguments);
res.json(data);
});
});
router.get('/list', function(req, res, next) {
lxc.list(function(data){
console.log('list', arguments);
res.json(data);
});
});