add account command

This commit is contained in:
Yasuhiro Matsumoto 2017-04-15 22:58:46 +09:00
parent 76d34e4b04
commit 07710230d9
2 changed files with 34 additions and 0 deletions

View file

@ -202,6 +202,11 @@ func run() int {
Usage: "show instance information",
Action: cmdInstance,
},
{
Name: "account",
Usage: "show account information",
Action: cmdAccount,
},
}
app.Run(os.Args)
return 0