| 176 | var _ AsyncRoundTripper[combiner.PipelineResponse] = (*pipelineBridge)(nil) |
| 177 | |
| 178 | type pipelineBridge struct { |
| 179 | next RoundTripper |
| 180 | convert func(*http.Response) Responses[combiner.PipelineResponse] |
| 181 | } |
| 182 | |
| 183 | func (b *pipelineBridge) RoundTrip(req Request) (Responses[combiner.PipelineResponse], error) { |
| 184 | r, err := b.next.RoundTrip(req) |
nothing calls this directly
no outgoing calls
no test coverage detected