@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
12 lines (11 loc) • 436 B
JavaScript
import { Command } from "@oclif/core";
export default class LogsChannelLifecycle extends Command {
static description = "Stream logs from [meta]channel.lifecycle meta channel";
static examples = [
"$ ably logs channel-lifecycle subscribe",
"$ ably logs channel-lifecycle subscribe --rewind 10",
];
async run() {
this.log("Use the subscribe subcommand. See --help for more information.");
}
}