| 81 | var _ ConfigRead = &mergedConfig{} |
| 82 | |
| 83 | type mergedConfig struct { |
| 84 | local ConfigRead |
| 85 | global ConfigRead |
| 86 | } |
| 87 | |
| 88 | func (m *mergedConfig) ReadAll(keyPrefix string) (map[string]string, error) { |
| 89 | values, err := m.global.ReadAll(keyPrefix) |
nothing calls this directly
no outgoing calls
no test coverage detected