@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
15 lines (14 loc) • 439 B
JavaScript
import { AblyBaseCommand } from "../../base-command.js";
export default class ConfigIndex extends AblyBaseCommand {
static description = "Manage Ably CLI configuration";
static examples = [
"<%= config.bin %> config path",
"<%= config.bin %> config show",
];
static flags = {
...AblyBaseCommand.globalFlags,
};
async run() {
await this.config.runCommand("help", ["config"]);
}
}