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

Struct hostClientTransport

client/transport.go:96–98  ·  view source on GitHub ↗

hostClientTransport adapts fasthttp.HostClient to the httpClientTransport interface used by Fiber's client helpers.

Source from the content-addressed store, hash-verified

94// hostClientTransport adapts fasthttp.HostClient to the httpClientTransport
95// interface used by Fiber's client helpers.
96type hostClientTransport struct {
97 client *fasthttp.HostClient
98}
99
100func newHostClientTransport(client *fasthttp.HostClient) *hostClientTransport {
101 return &hostClientTransport{client: client}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected