Client is the pushing client
| 10 | |
| 11 | // Client is the pushing client |
| 12 | type Client struct { |
| 13 | servant model.Servant |
| 14 | callback func(data []byte) |
| 15 | } |
| 16 | |
| 17 | // SetServant implements client servant |
| 18 | func (c *Client) SetServant(s model.Servant) { |
nothing calls this directly
no outgoing calls
no test coverage detected