Async Pipeline
| 93 | // |
| 94 | |
| 95 | type AsyncRoundTripper[T any] interface { |
| 96 | RoundTrip(Request) (Responses[T], error) |
| 97 | } |
| 98 | |
| 99 | type AsyncRoundTripperFunc[T any] func(Request) (Responses[T], error) |
| 100 |
nothing calls this directly
no outgoing calls
no test coverage detected