UNPKG

fedapay-cli

Version:
31 lines (30 loc) 845 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const tslib_1 = require("tslib"); /* eslint-disable lines-between-class-members */ const command_1 = require("@oclif/command"); const base_1 = tslib_1.__importDefault(require("../base")); /** * The base class of Webhooks commands */ class Webhooks extends base_1.default { async run() { this._help(); } } exports.default = Webhooks; /** * The command descrition * @var string */ Webhooks.description = 'Manage FedaPay Webhook ressources'; /** * The command usage * @var string */ Webhooks.usage = 'Webhooks:<operation> [parameters...]'; /** * The command flags * @var Object */ Webhooks.flags = Object.assign(Object.assign({}, base_1.default.flags), { help: command_1.flags.help({ char: 'h', description: 'Help for Webhooks command.' }) });