master
Jason Staten 2 years ago
parent a6c0d87eab
commit 0c2b35cb2a

@ -19,6 +19,13 @@ func readDb() (*mps.TransactionLog, error) {
}
func Root(args []string) error {
if len(args) == 0 {
return fmt.Errorf(`
Missing Command. Supported options:
balance
users
`)
}
switch args[0] {
case "users":
return users(args[1:])

Loading…
Cancel
Save