@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
17 lines (16 loc) • 526 B
JavaScript
import { BaseTopicCommand } from '../../base-topic-command.js';
export default class AppsCommand extends BaseTopicCommand {
topicName = 'apps';
commandGroup = 'apps management';
static description = 'Manage Ably apps';
static examples = [
'$ ably apps list',
'$ ably apps create',
'$ ably apps update',
'$ ably apps delete',
'$ ably apps set-apns-p12',
'$ ably apps stats',
'$ ably apps channel-rules list',
'$ ably apps switch my-app',
];
}