RPCClient is an implementation of Plugin that talks over RPC.
| 37 | |
| 38 | // RPCClient is an implementation of Plugin that talks over RPC. |
| 39 | type RPCClient struct { |
| 40 | client *rpc.Client |
| 41 | } |
| 42 | |
| 43 | func (m *RPCClient) Exec(_ context.Context, config PluginExecConfig) (*PluginExecResult, error) { |
| 44 | var resp PluginExecResult |
nothing calls this directly
no outgoing calls
no test coverage detected