Actor handles all plugin actions
| 3 | |
| 4 | // Actor handles all plugin actions |
| 5 | type Actor struct { |
| 6 | config Config |
| 7 | client PluginClient |
| 8 | } |
| 9 | |
| 10 | // NewActor returns a pluginaction Actor |
| 11 | func NewActor(config Config, client PluginClient) *Actor { |
nothing calls this directly
no outgoing calls
no test coverage detected