Updater allows an object to implement a method that updates a configuration.
| 21 | |
| 22 | // Updater allows an object to implement a method that updates a configuration. |
| 23 | type Updater interface { |
| 24 | OverrideConfig(*Config) error |
| 25 | } |
| 26 | |
| 27 | // Config passes along Amass configuration settings and options. |
| 28 | type Config struct { |
nothing calls this directly
no outgoing calls
no test coverage detected