ControllerHTTPClient implements ControllerClient over http
| 49 | |
| 50 | // ControllerHTTPClient implements ControllerClient over http |
| 51 | type ControllerHTTPClient struct { |
| 52 | c *http.Client |
| 53 | address string |
| 54 | headers http.Header |
| 55 | namespace string |
| 56 | } |
| 57 | |
| 58 | // NewControllerHTTPClient returns new ControllerHTTPClient |
| 59 | func NewControllerHTTPClient(address string, timeoutSec time.Duration, headers http.Header) *ControllerHTTPClient { |
nothing calls this directly
no outgoing calls
no test coverage detected