(client *fasthttp.Client)
| 44 | } |
| 45 | |
| 46 | func newStandardClientTransport(client *fasthttp.Client) *standardClientTransport { |
| 47 | return &standardClientTransport{client: client} |
| 48 | } |
| 49 | |
| 50 | func (s *standardClientTransport) Do(req *fasthttp.Request, resp *fasthttp.Response) error { |
| 51 | return s.client.Do(req, resp) |
no outgoing calls