(key string)
| 39 | // ConfigInterface defines the behavior of a Config implementation. |
| 40 | type ConfigInterface interface { |
| 41 | String(key string) string |
| 42 | Strings(key string) []string |
| 43 | Bool(key string) (bool, error) |
| 44 | Int(key string) (int, error) |
no outgoing calls