EngineClient implements the Engine interface. It connects to the Seesaw Engine UNIX domain socket specified by Socket.
| 41 | // EngineClient implements the Engine interface. It connects to the Seesaw |
| 42 | // Engine UNIX domain socket specified by Socket. |
| 43 | type EngineClient struct { |
| 44 | Socket string |
| 45 | } |
| 46 | |
| 47 | // HAConfig requests the HAConfig from the Seesaw Engine. |
| 48 | func (e *EngineClient) HAConfig() (*seesaw.HAConfig, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected