UNPKG

@hashgraph/hedera-cli

Version:

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

14 lines (11 loc) 313 B
import deleteCommand from './delete'; import listCommand from './list'; import loadCommand from './load'; export default (program: any) => { const script = program .command('script') .description('Handle and execute scripts'); deleteCommand(script); listCommand(script); loadCommand(script); };