From 9f2f29a9a42f9c7cdb1d39ccbed644efeb10ca31 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 30 Apr 2015 21:25:55 -0700 Subject: [PATCH] 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. --- commands/command.go | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/commands/command.go b/commands/command.go index f819b0440..e9774b85b 100644 --- a/commands/command.go +++ b/commands/command.go @@ -1,3 +1,11 @@ +/* +Package commands provides an API for defining and parsing commands. + +Supporting nested commands, options, arguments, etc. The commands +package also supports a collection of marshallers for presenting +output to the user, including text, JSON, and XML marshallers. +*/ + package commands import (