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

Struct standardClientTransport

client/transport.go:42–44  ·  view source on GitHub ↗

standardClientTransport adapts fasthttp.Client to the httpClientTransport interface used by Fiber's client helpers.

Source from the content-addressed store, hash-verified

40// standardClientTransport adapts fasthttp.Client to the httpClientTransport
41// interface used by Fiber's client helpers.
42type standardClientTransport struct {
43 client *fasthttp.Client
44}
45
46func newStandardClientTransport(client *fasthttp.Client) *standardClientTransport {
47 return &standardClientTransport{client: client}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected