engineIPC contains the structures necessary for communication with the Seesaw Engine via IPC.
| 32 | // engineIPC contains the structures necessary for communication with the |
| 33 | // Seesaw Engine via IPC. |
| 34 | type engineIPC struct { |
| 35 | client *rpc.Client |
| 36 | ctx *ipc.Context |
| 37 | } |
| 38 | |
| 39 | // newEngineIPC returns a new engine IPC interface. |
| 40 | func newEngineIPC(ctx *ipc.Context) EngineConn { |
nothing calls this directly
no outgoing calls
no test coverage detected