standardClientTransport adapts fasthttp.Client to the httpClientTransport interface used by Fiber's client helpers.
| 40 | // standardClientTransport adapts fasthttp.Client to the httpClientTransport |
| 41 | // interface used by Fiber's client helpers. |
| 42 | type standardClientTransport struct { |
| 43 | client *fasthttp.Client |
| 44 | } |
| 45 | |
| 46 | func newStandardClientTransport(client *fasthttp.Client) *standardClientTransport { |
| 47 | return &standardClientTransport{client: client} |
nothing calls this directly
no outgoing calls
no test coverage detected