cli: add token-renew

This commit is contained in:
Mitchell Hashimoto 2015-04-19 18:04:24 -07:00
parent 58d476edd0
commit 9ab464e518
1 changed files with 6 additions and 0 deletions

View File

@ -205,6 +205,12 @@ func Commands(metaPtr *command.Meta) map[string]cli.CommandFactory {
}, nil
},
"token-renew": func() (cli.Command, error) {
return &command.TokenRenewCommand{
Meta: meta,
}, nil
},
"token-revoke": func() (cli.Command, error) {
return &command.TokenRevokeCommand{
Meta: meta,