update commands.go to use StateMeta

This commit is contained in:
James Bardin 2017-07-27 11:54:14 -04:00
parent 33ba6774e0
commit 2e7c8ab76a
1 changed files with 6 additions and 2 deletions

View File

@ -276,13 +276,17 @@ func init() {
"state rm": func() (cli.Command, error) {
return &command.StateRmCommand{
Meta: meta,
StateMeta: command.StateMeta{
Meta: meta,
},
}, nil
},
"state mv": func() (cli.Command, error) {
return &command.StateMvCommand{
Meta: meta,
StateMeta: command.StateMeta{
Meta: meta,
},
}, nil
},