Value represents a value as used by cli. For now it implements the golang flag.Value interface
| 12 | // Value represents a value as used by cli. |
| 13 | // For now it implements the golang flag.Value interface |
| 14 | type Value interface { |
| 15 | flag.Value |
| 16 | flag.Getter |
| 17 | } |
| 18 | |
| 19 | type boolFlag interface { |
| 20 | IsBoolFlag() bool |
nothing calls this directly
no outgoing calls
no test coverage detected