11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import yargs from 'yargs';
|
|
|
|
export const command = 'account';
|
|
|
|
export const desc = 'Account operations.';
|
|
|
|
exports.builder = (yargs: yargs.Argv) => {
|
|
return yargs.commandDir('account-cmds')
|
|
.demandCommand();
|
|
}
|