UNPKG

@ably/cli

Version:

Ably CLI for Pub/Sub, Chat and Spaces

12 lines (11 loc) 448 B
import { Command } from "@oclif/core"; export default class LogsConnectionLifecycle extends Command { static description = "Stream logs from [meta]connection.lifecycle meta channel"; static examples = [ "$ ably logs connection-lifecycle subscribe", "$ ably logs connection-lifecycle subscribe --rewind 10", ]; async run() { this.log("Use the subscribe subcommand. See --help for more information."); } }