This repository has been archived on 2020-01-20. You can view files and clone it, but cannot push or open issues or pull requests.
node-spearhead/lib/do_networks.js

26 lines
693 B
JavaScript
Raw Normal View History

2015-08-26 16:40:50 -04:00
/*
2015-09-04 14:12:20 -04:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/*
2016-01-04 21:53:52 -08:00
* Copyright 2016 Joyent, Inc.
2015-08-26 16:40:50 -04:00
*
2016-01-04 21:53:52 -08:00
* `triton networks ...` bwcompat shortcut for `triton network list ...`.
2015-08-26 16:40:50 -04:00
*/
function do_networks(subcmd, opts, args, callback) {
this.handlerFromSubcmd('network').dispatch({
subcmd: 'list',
opts: opts,
args: args
}, callback);
2015-08-26 16:40:50 -04:00
}
do_networks.help = 'A shortcut for "triton network list".';
do_networks.hidden = true;
do_networks.options = require('./do_network/do_list').options;
2015-08-26 16:40:50 -04:00
module.exports = do_networks;