import { Command } from 'commander' import account from '../../infrastructure/account/accountInfo' const program = new Command() program .name('info') .description('Get Account Info') .option('-t, --type ', 'Specify the type of Account', 'balance') .option('-u, --url ', 'Specify the input of mijin URL') .option('-r, --readfile ', 'Specify the input of Read Config File') .option('-a, --address ', 'Specify the input of Address') .option('-s, --service', 'Specify the input Service Mode', false) .option('-b, --bod', 'Specify the input of mijin BOD mode(use Cookie)', false) .action(account) export default program