Skip to content

Commit

Permalink
Fix subcommand names
Browse files Browse the repository at this point in the history
  • Loading branch information
pgporada committed Aug 16, 2024
1 parent aef149f commit b10e81c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmd/admin/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ func main() {

// This is the registry of all subcommands that the admin tool can run.
subcommands := map[string]subcommand{
"revoke-cert": &subcommandRevokeCert{},
"block-key": &subcommandBlockKey{},
"update-email": &subcommandUpdateEmail{},
"pause-batch": &subcommandPauseIdentifier{},
"unpause-batch": &subcommandUnpauseAccount{},
"revoke-cert": &subcommandRevokeCert{},
"block-key": &subcommandBlockKey{},
"update-email": &subcommandUpdateEmail{},
"pause-identifier": &subcommandPauseIdentifier{},
"unpause-account": &subcommandUnpauseAccount{},
}

defaultUsage := flag.Usage
Expand Down

0 comments on commit b10e81c

Please sign in to comment.