fedapay-cli
Version:
A command-line tool for FedaPay
27 lines (26 loc) • 812 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"));
class Samples extends base_1.default {
async run() {
this._help();
}
}
exports.default = Samples;
/**
* Samples class extending Command Class
*/
Samples.description = 'Samples integration built by FedaPay';
/**
* @param string
* custom usage string for help
* this overrides the default usage
*/
Samples.usage = 'samples:<operation> [parameters...]';
/**
* @param object
* Declaration of the command flags
*/
Samples.flags = Object.assign(Object.assign({}, base_1.default.flags), { help: command_1.flags.help({ char: 'h', description: 'Help for samples command.' }) });