lbClientTransport adapts fasthttp.LBClient to the httpClientTransport interface used by Fiber's client helpers.
| 148 | // lbClientTransport adapts fasthttp.LBClient to the httpClientTransport |
| 149 | // interface used by Fiber's client helpers. |
| 150 | type lbClientTransport struct { |
| 151 | client *fasthttp.LBClient |
| 152 | } |
| 153 | |
| 154 | func newLBClientTransport(client *fasthttp.LBClient) *lbClientTransport { |
| 155 | return &lbClientTransport{client: client} |
nothing calls this directly
no outgoing calls
no test coverage detected