memoryLoader initializes plugins in memory from an array of factories
| 48 | |
| 49 | // memoryLoader initializes plugins in memory from an array of factories |
| 50 | type memoryLoader struct { |
| 51 | plugins []sdk.FanOutFactory |
| 52 | logger log.Logger |
| 53 | } |
| 54 | |
| 55 | type PluginInitializer interface { |
| 56 | Init(path string) (*sdk.FanOutP, error) |
nothing calls this directly
no outgoing calls
no test coverage detected