| 20 | } |
| 21 | |
| 22 | type Plugin struct { |
| 23 | *plugin.Plugin |
| 24 | |
| 25 | timeouts core.Timeouts |
| 26 | ctx interface{} |
| 27 | } |
| 28 | |
| 29 | func LoadPlugin(path string) (error, *Plugin) { |
| 30 | if p, err := plugin.Load(path); err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected