@hashgraph/hedera-cli
Version:
CLI tool to manage and setup developer environments for Hedera Hashgraph.
16 lines (13 loc) • 366 B
text/typescript
import createCommand from './create';
import messageCommand from './message';
import listCommand from './list';
export default (program: any) => {
const state = program
.command('topic')
.description(
'Hedera Consensus Service commands handling topics and messages',
);
createCommand(state);
messageCommand(state);
listCommand(state);
};