480 B
480 B
Runner: CLI options handling
Golang native options handling from the Flag package makes it very hard to implement extended POSIX-style options handling, like most CLI programs have. Accordingly, existing packages address the problem:
- POSIX-style
- basic : https://godoc.org/github.com/pborman/getopt
- Fluent API : https://github.com/alecthomas/kingpin
Questions
- Interaction with the CLI configuration package ?