Part of https://www.notion.so/Create-laconic-registry-SDK-d3a636d4aba44f7cbba3bd99b7146811 Co-authored-by: neeraj <neeraj.rtly@gmail.com> Reviewed-on: cerc-io/laconic-registry-cli#57 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
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();
|
|
};
|