Module is the configuration module that bundles the reload watcher and exportConfig commands. This module triggers ReloadedEvent on configuration change.
| 19 | // Module is the configuration module that bundles the reload watcher and exportConfig commands. |
| 20 | // This module triggers ReloadedEvent on configuration change. |
| 21 | type Module struct { |
| 22 | conf *KoanfAdapter |
| 23 | exportedConfigs []ExportedConfig |
| 24 | dispatcher contract.Dispatcher |
| 25 | } |
| 26 | |
| 27 | // ConfigIn is the injection parameter for config.New. |
| 28 | type ConfigIn struct { |
nothing calls this directly
no outgoing calls
no test coverage detected