| 85 | } |
| 86 | |
| 87 | type HTTPVehicle struct { |
| 88 | url string |
| 89 | path string |
| 90 | proxy string |
| 91 | header http.Header |
| 92 | timeout time.Duration |
| 93 | sizeLimit int64 |
| 94 | inRead func(response *http.Response) |
| 95 | provider P.ProxyProvider |
| 96 | } |
| 97 | |
| 98 | func (h *HTTPVehicle) Url() string { |
| 99 | return h.url |
nothing calls this directly
no outgoing calls
no test coverage detected