update main commands listing to the new commands
This commit is contained in:
parent
523801dcc2
commit
1492c578de
18
commands.go
18
commands.go
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue