1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-20 19:19:06 +08:00

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.
This commit is contained in:
W. Trevor King
2015-04-30 21:25:55 -07:00
parent ee3c30708c
commit 9f2f29a9a4

View File

@ -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 package commands
import ( import (