(s fmt.State, verb rune)
| 90 | // ErrorFormatter is the interface that will suitably format the error output |
| 91 | type ErrorFormatter interface { |
| 92 | Format(s fmt.State, verb rune) |
| 93 | } |
| 94 | |
| 95 | // ExitCoder is the interface checked by `Command` for a custom exit code. |
no outgoing calls