| 238 | } |
| 239 | |
| 240 | type Config interface { |
| 241 | Viper() *viper.Viper |
| 242 | BridgeValues() *BridgeValues |
| 243 | IsKeySet(key string) bool |
| 244 | GetBool(key string) (bool, bool) |
| 245 | GetInt(key string) (int, bool) |
| 246 | GetString(key string) (string, bool) |
| 247 | GetStringSlice(key string) ([]string, bool) |
| 248 | GetStringSlice2D(key string) ([][]string, bool) |
| 249 | } |
| 250 | |
| 251 | type config struct { |
| 252 | sync.RWMutex |
no outgoing calls
no test coverage detected