UNPKG

@hashgraph/hedera-cli

Version:

CLI tool to manage and setup developer environments for Hedera Hashgraph.

20 lines (17 loc) 522 B
import deleteCommand from './delete'; import balanceCommand from './balance'; import createCommand from './create'; import importCommand from './import'; import listCommand from './list'; import clearCommand from './clear'; import viewCommand from './view'; export default (program: any) => { const account = program.command('account'); deleteCommand(account); balanceCommand(account); createCommand(account); importCommand(account); listCommand(account); clearCommand(account); viewCommand(account); };