update commands.go to use StateMeta
This commit is contained in:
parent
33ba6774e0
commit
2e7c8ab76a
|
@ -276,13 +276,17 @@ func init() {
|
||||||
|
|
||||||
"state rm": func() (cli.Command, error) {
|
"state rm": func() (cli.Command, error) {
|
||||||
return &command.StateRmCommand{
|
return &command.StateRmCommand{
|
||||||
Meta: meta,
|
StateMeta: command.StateMeta{
|
||||||
|
Meta: meta,
|
||||||
|
},
|
||||||
}, nil
|
}, nil
|
||||||
},
|
},
|
||||||
|
|
||||||
"state mv": func() (cli.Command, error) {
|
"state mv": func() (cli.Command, error) {
|
||||||
return &command.StateMvCommand{
|
return &command.StateMvCommand{
|
||||||
Meta: meta,
|
StateMeta: command.StateMeta{
|
||||||
|
Meta: meta,
|
||||||
|
},
|
||||||
}, nil
|
}, nil
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue