FlagValueSet is an interface that users can implement to bind a set of flags to viper.
| 5 | // FlagValueSet is an interface that users can implement |
| 6 | // to bind a set of flags to viper. |
| 7 | type FlagValueSet interface { |
| 8 | VisitAll(fn func(FlagValue)) |
| 9 | } |
| 10 | |
| 11 | // FlagValue is an interface that users can implement |
| 12 | // to bind different flags to viper. |
no outgoing calls
no test coverage detected