Adding new command 'lock'

This commit is contained in:
Armon Dadgar 2015-01-19 14:37:58 -10:00
parent 1aa8b0fc23
commit 6fcc743384
1 changed files with 7 additions and 0 deletions

View File

@ -69,6 +69,13 @@ func init() {
}, nil }, nil
}, },
"lock": func() (cli.Command, error) {
return &command.LockCommand{
ShutdownCh: makeShutdownCh(),
Ui: ui,
}, nil
},
"members": func() (cli.Command, error) { "members": func() (cli.Command, error) {
return &command.MembersCommand{ return &command.MembersCommand{
Ui: ui, Ui: ui,