GetOrDefault provides primitive access for fetching configuration values, optionally scoped by host.
(hostname string, key string)
| 32 | type Config interface { |
| 33 | // GetOrDefault provides primitive access for fetching configuration values, optionally scoped by host. |
| 34 | GetOrDefault(hostname string, key string) o.Option[ConfigEntry] |
| 35 | // Set provides primitive access for setting configuration values, optionally scoped by host. |
| 36 | Set(hostname string, key string, value string) |
| 37 |
no outgoing calls