rename command and directory

This commit is contained in:
zramsay 2023-01-11 12:55:47 -05:00
parent 1788c1e4c3
commit e0bb3ae3af
No known key found for this signature in database
GPG Key ID: FECD2DBFAE9DBE63

View File

@ -1,6 +1,6 @@
import yargs from 'yargs'; import yargs from 'yargs';
export const command = 'cns'; export const command = 'registry';
export const desc = 'Laconic Registry Tools'; export const desc = 'Laconic Registry Tools';
@ -17,7 +17,7 @@ exports.builder = (yargs: yargs.Argv) => {
'gas': { type: 'string' }, 'gas': { type: 'string' },
'fees': { type: 'string' } 'fees': { type: 'string' }
}) })
.commandDir('cns-cmds') .commandDir('registry-cmds')
.demandCommand() .demandCommand()
.help() .help()
} }