UNPKG

@kadena/kadena-cli

Version:

Kadena CLI tool to interact with the Kadena blockchain (manage keys, transactions, etc.)

10 lines 285 B
import { log } from '../../utils/logger.js'; export function versionCommand(program, version) { program .command('version') .description('display the version of the CLI') .action(() => { log.info(version); }); } //# sourceMappingURL=index.js.map