Files
net/http/roundtrip.go
T
Martin Robomaze b2d3a2b05b Add Transporter for wasm js target (#42)
* added js target specific roundtrip

* roundtrip_js dial parameter fix
2026-04-17 10:41:57 +02:00

11 lines
259 B
Go

// TINYGO: The following is copied and modified from Go 1.21.4 official implementation.
//go:build !js
package http
// RoundTrip implements a RoundTripper over HTTP.
func (t *Transport) RoundTrip(req *Request) (*Response, error) {
return roundTrip(req)
}