(w http.ResponseWriter, r *http.Request)
| 193 | } |
| 194 | |
| 195 | func (p *ReverseProxy) ServeHTTP(w http.ResponseWriter, r *http.Request) { |
| 196 | p.ServeHTTPContext(context.Background(), w, r) |
| 197 | } |
| 198 | |
| 199 | func (p *ReverseProxy) copyResponse(ctx context.Context, dst io.Writer, inject inject.Injector) { |
| 200 | log := termlog.FromContext(ctx) |
nothing calls this directly
no test coverage detected