Skip to content

Commit 4217f43

Browse files
committed
Sort the list of command-registrations into alphabetical order, for neatness.
1 parent 6c8bae0 commit 4217f43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: main.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ func main() {
3030
//
3131
// Register each of our subcommands.
3232
//
33+
subcommands.Register(&SSLExpiryCommand{})
3334
subcommands.Register(&calcCommand{})
3435
subcommands.Register(&chooseFileCommand{})
3536
subcommands.Register(&chooseSTDINCommand{})
@@ -38,20 +39,19 @@ func main() {
3839
subcommands.Register(&commentsCommand{})
3940
subcommands.Register(&cppCommand{})
4041
subcommands.Register(&envTemplateCommand{})
41-
subcommands.Register(&expectCommand{})
4242
subcommands.Register(&execSTDINCommand{})
43+
subcommands.Register(&expectCommand{})
4344
subcommands.Register(&findCommand{})
4445
subcommands.Register(&fingerdCommand{})
4546
subcommands.Register(&html2TextCommand{})
46-
subcommands.Register(&httpdCommand{})
4747
subcommands.Register(&httpGetCommand{})
48+
subcommands.Register(&httpdCommand{})
4849
subcommands.Register(&ipsCommand{})
4950
subcommands.Register(&markdownTOCCommand{})
5051
subcommands.Register(&passwordCommand{})
5152
subcommands.Register(&rssCommand{})
5253
subcommands.Register(&runDirectoryCommand{})
5354
subcommands.Register(&splayCommand{})
54-
subcommands.Register(&SSLExpiryCommand{})
5555
subcommands.Register(&timeoutCommand{})
5656
subcommands.Register(&todoCommand{})
5757
subcommands.Register(&treeCommand{})

0 commit comments

Comments
 (0)