A Source will provide a snapshot of a Config struct.
| 4 | |
| 5 | // A Source will provide a snapshot of a Config struct. |
| 6 | type Source interface { |
| 7 | Config() Config |
| 8 | } |
| 9 | |
| 10 | // Static implements a config.Source that never changes it's values. |
| 11 | type Static Config |
no outgoing calls
no test coverage detected