Source is the source from which config is loaded.
| 28 | |
| 29 | // Source is the source from which config is loaded. |
| 30 | type Source interface { |
| 31 | Read() (map[string]map[string]any, error) |
| 32 | Write(data map[string]any, host string) error |
| 33 | } |
no outgoing calls
no test coverage detected