| 104 | } |
| 105 | |
| 106 | type httpClient struct { |
| 107 | endpoint *url.URL |
| 108 | client http.Client |
| 109 | } |
| 110 | |
| 111 | func (c *httpClient) URL(ep string, args map[string]string) *url.URL { |
| 112 | p := path.Join(c.endpoint.Path, ep) |
nothing calls this directly
no outgoing calls
no test coverage detected