(resp *http.Response)
| 240 | } |
| 241 | |
| 242 | func statusText(resp *http.Response) string { |
| 243 | return strings.TrimSpace(strings.TrimPrefix(resp.Status, strconv.Itoa(resp.StatusCode))) |
| 244 | } |
| 245 | |
| 246 | func cloneHeader(h http.Header) http.Header { |
| 247 | out := http.Header{} |
no outgoing calls
no test coverage detected
searching dependent graphs…