pflagValue is a wrapper around *pflag.flag that implements FlagValue.
| 33 | // pflagValue is a wrapper around *pflag.flag |
| 34 | // that implements FlagValue. |
| 35 | type pflagValue struct { |
| 36 | flag *pflag.Flag |
| 37 | } |
| 38 | |
| 39 | // HasChanged returns whether the flag has changes or not. |
| 40 | func (p pflagValue) HasChanged() bool { |
nothing calls this directly
no outgoing calls
no test coverage detected