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