hostClientTransport adapts fasthttp.HostClient to the httpClientTransport interface used by Fiber's client helpers.
| 94 | // hostClientTransport adapts fasthttp.HostClient to the httpClientTransport |
| 95 | // interface used by Fiber's client helpers. |
| 96 | type hostClientTransport struct { |
| 97 | client *fasthttp.HostClient |
| 98 | } |
| 99 | |
| 100 | func newHostClientTransport(client *fasthttp.HostClient) *hostClientTransport { |
| 101 | return &hostClientTransport{client: client} |
nothing calls this directly
no outgoing calls
no test coverage detected