@ably/cli
Version:
Ably CLI for Pub/Sub, Chat and Spaces
15 lines (14 loc) • 526 B
JavaScript
import { BaseTopicCommand } from '../../base-topic-command.js';
export default class AccountsCommand extends BaseTopicCommand {
topicName = 'accounts';
commandGroup = 'accounts management';
static description = 'Manage Ably accounts and your configured access tokens';
static examples = [
'$ ably accounts login',
'$ ably accounts list',
'$ ably accounts current',
'$ ably accounts logout',
'$ ably accounts switch my-account',
'$ ably accounts stats',
];
}