1 package client 2 3 import "net/http" 4 5 func New() *http.Client { 6 return &http.Client{ 7 Transport: &HTransport{ 8 T: http.DefaultTransport, 9 }, 10 } 11 } 12
View as plain text