laconic-registry-cli/src/cmds/cns-cmds/bond.ts

11 lines
208 B
TypeScript
Raw Normal View History

2022-04-25 11:31:57 +00:00
import yargs from 'yargs';
export const command = 'bond';
export const desc = 'Bonds operations.';
exports.builder = (yargs: yargs.Argv) => {
return yargs.commandDir('bond-cmds')
.demandCommand();
}