fedapay-cli
Version:
A command-line tool for FedaPay
30 lines (29 loc) • 791 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const command_1 = require("@oclif/command");
const base_1 = tslib_1.__importDefault(require("../base"));
/**
* Payouts command class
*/
class Payouts extends base_1.default {
async run() {
this._help();
}
}
exports.default = Payouts;
/**
* The command descrition
* @var string
*/
Payouts.description = 'Manage FedaPay payout ressources';
/**
* @param string
* payouts usage string for help
*/
Payouts.usage = 'payouts:<operation> [parameters...]';
/**
* The command flags
* @var Object
*/
Payouts.flags = Object.assign(Object.assign({}, base_1.default.flags), { help: command_1.flags.help({ char: 'h', description: 'Help for payouts command.' }) });