MCPcopy
hub / github.com/gofiber/fiber / lbClientTransport

Struct lbClientTransport

client/transport.go:150–152  ·  view source on GitHub ↗

lbClientTransport adapts fasthttp.LBClient to the httpClientTransport interface used by Fiber's client helpers.

Source from the content-addressed store, hash-verified

148// lbClientTransport adapts fasthttp.LBClient to the httpClientTransport
149// interface used by Fiber's client helpers.
150type lbClientTransport struct {
151 client *fasthttp.LBClient
152}
153
154func newLBClientTransport(client *fasthttp.LBClient) *lbClientTransport {
155 return &lbClientTransport{client: client}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected