A custom flag that conforms to the relevant interfaces, but has none of the fields that the other flag types do.
| 2928 | // A custom flag that conforms to the relevant interfaces, but has none of the |
| 2929 | // fields that the other flag types do. |
| 2930 | type customBoolFlag struct { |
| 2931 | Nombre string |
| 2932 | } |
| 2933 | |
| 2934 | // Don't use the normal FlagStringer |
| 2935 | func (c *customBoolFlag) String() string { |
nothing calls this directly
no outgoing calls
no test coverage detected