Used to easily create an HTTP transport!
func(req *http.Request) (*http.Response, error)
| 1759 | |
| 1760 | // Used to easily create an HTTP transport! |
| 1761 | type roundTripper func(req *http.Request) (*http.Response, error) |
| 1762 | |
| 1763 | func (r roundTripper) RoundTrip(req *http.Request) (*http.Response, error) { |
| 1764 | return r(req) |
no outgoing calls
no test coverage detected