| 29 | ) |
| 30 | |
| 31 | type ControllerClient struct { |
| 32 | client rest.FastHTTPClient |
| 33 | scheme string |
| 34 | host string |
| 35 | prefix string |
| 36 | version string |
| 37 | } |
| 38 | |
| 39 | func NewControllerClient(runOptions *ControllerClientOptions) (c *ControllerClient, err error) { |
| 40 | u, err := url.Parse(runOptions.Host) |
nothing calls this directly
no outgoing calls
no test coverage detected