authweiler
Version:
A full-flegded 0Auth2.0 HTTP proxy server
18 lines (16 loc) • 405 B
JavaScript
function configCommandFn() {
return yargs.options({
s: { alias: 'set', describe: 'set config by key/value' },
f: { alias: 'list', describe: 'list config' },
t: { alias: 'unset', describe: 'remove config key' },
});
}
module.exports = {
name: 'config',
description: 'Manage Configuration',
commandFn: configCommandFn,
exec: function (argv) {
if(argv.destination) {
}
}
}