update main commands listing to the new commands

This commit is contained in:
Mitchell Hashimoto 2017-01-18 20:51:06 -08:00
parent 523801dcc2
commit 1492c578de
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 12 additions and 6 deletions

View File

@ -129,12 +129,6 @@ func init() {
}, nil
},
"remote": func() (cli.Command, error) {
return &command.RemoteCommand{
Meta: meta,
}, nil
},
"show": func() (cli.Command, error) {
return &command.ShowCommand{
Meta: meta,
@ -209,6 +203,18 @@ func init() {
}, nil
},
"state pull": func() (cli.Command, error) {
return &command.StatePullCommand{
Meta: meta,
}, nil
},
"state push": func() (cli.Command, error) {
return &command.StatePushCommand{
Meta: meta,
}, nil
},
"state show": func() (cli.Command, error) {
return &command.StateShowCommand{
Meta: meta,