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
|
}, nil
|
||||||
},
|
},
|
||||||
|
|
||||||
"remote": func() (cli.Command, error) {
|
|
||||||
return &command.RemoteCommand{
|
|
||||||
Meta: meta,
|
|
||||||
}, nil
|
|
||||||
},
|
|
||||||
|
|
||||||
"show": func() (cli.Command, error) {
|
"show": func() (cli.Command, error) {
|
||||||
return &command.ShowCommand{
|
return &command.ShowCommand{
|
||||||
Meta: meta,
|
Meta: meta,
|
||||||
|
@ -209,6 +203,18 @@ func init() {
|
||||||
}, nil
|
}, 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) {
|
"state show": func() (cli.Command, error) {
|
||||||
return &command.StateShowCommand{
|
return &command.StateShowCommand{
|
||||||
Meta: meta,
|
Meta: meta,
|
||||||
|
|
Loading…
Reference in New Issue