commands/command: Add a package comment
I'm not quite sure which file in this package is the most prominent, but command.go seemed like a reasonable choice.
W. Trevor King committed
Apr 30, 2015 at 21:25 UTC
9f2f29a9a42f9c7cdb1d39ccbed644efeb10ca31
1 file changed
+8
commands/command.go
+8
@@ -1,3 +1,11 @@
1
+/*
2
+Package commands provides an API for defining and parsing commands.
3
+
4
+Supporting nested commands, options, arguments, etc. The commands
5
+package also supports a collection of marshallers for presenting
6
+output to the user, including text, JSON, and XML marshallers.
7
+*/
8
+
9
package commands
10
11
import (