| 184 | } |
| 185 | |
| 186 | type httpGetter struct { |
| 187 | transport func(context.Context) http.RoundTripper |
| 188 | baseURL string |
| 189 | } |
| 190 | |
| 191 | var bufferPool = sync.Pool{ |
| 192 | New: func() interface{} { return new(bytes.Buffer) }, |
nothing calls this directly
no outgoing calls
no test coverage detected