| 6 | ) |
| 7 | |
| 8 | type AuroraHttpClient interface { |
| 9 | Request(method HttpMethod, url string, headers AuroraHeaders, cookies []*http.Cookie, body io.Reader) (*http.Response, error) |
| 10 | SetProxy(url string) error |
| 11 | } |
| 12 | |
| 13 | type HttpMethod string |
| 14 |
no outgoing calls
no test coverage detected