RPCServer is the RPC server that RPCClient talks to, conforming to the requirements of net/rpc.
| 57 | |
| 58 | // RPCServer is the RPC server that RPCClient talks to, conforming to the requirements of net/rpc. |
| 59 | type RPCServer struct { |
| 60 | Impl Plugin |
| 61 | } |
| 62 | |
| 63 | func (m *RPCServer) Exec(config PluginExecConfig, resp *PluginExecResult) error { |
| 64 | ctx := context.Background() |
nothing calls this directly
no outgoing calls
no test coverage detected