1 // Copyright 2018 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 //go:build !js || !wasm 6 // +build !js !wasm 7 8 package http 9 10 // RoundTrip implements the RoundTripper interface. 11 // 12 // For higher-level HTTP client support (such as handling of cookies 13 // and redirects), see Get, Post, and the Client type. 14 // 15 // Like the RoundTripper interface, the error types returned 16 // by RoundTrip are unspecified. 17 func (t *Transport) RoundTrip(req *Request) (*Response, error) { 18 return t.roundTrip(req) 19 } 20