laconic-registry-cli/src/cmds/registry-cmds/bond.ts
2023-01-11 12:50:41 -05:00

11 lines
208 B
TypeScript

import yargs from 'yargs';
export const command = 'bond';
export const desc = 'Bonds operations.';
exports.builder = (yargs: yargs.Argv) => {
return yargs.commandDir('bond-cmds')
.demandCommand();
}