Package Usage: go: gopkg.in/src-d/go-cli.v0
Package cli provides scaffolding for CLI applications. It is a convenience
wrapper for jessevdk/go-flags reducing boilerplate code.
The main entry point is the App type, created with the New function.
It provides:
Commands are defined with structs. For the general available struct tags, refer
to jessevdk/go-flags documentation at https://github.com/jessevdk/go-flags.
Additionally, every command struct must embed PlainCommand directly, or
indirectly through other struct (e.g. Command). The embedded field must be
defined with the struct tags name, short-description and long-description.
For example:
This will also work if nested:
Each defined command must be added to the application with the AddCommand
function.
Signal handling is setup for any cancellable command. Cancellable commands
implement the ContextCommander interface instead of flags.Commander.
See full examples in the examples subpackage.
1 version
Latest release: almost 6 years ago
13 dependent packages
View more package details: https://packages.ecosystem.code.gouv.fr/registries/proxy.golang.org/packages/gopkg.in/src-d/go-cli.v0