directoryLoader loads plugins from a directory
| 41 | |
| 42 | // directoryLoader loads plugins from a directory |
| 43 | type directoryLoader struct { |
| 44 | pluginsDir string |
| 45 | logger *log.Helper |
| 46 | initializer PluginInitializer |
| 47 | } |
| 48 | |
| 49 | // memoryLoader initializes plugins in memory from an array of factories |
| 50 | type memoryLoader struct { |
nothing calls this directly
no outgoing calls
no test coverage detected