flight

Results 1 comments of flight

you can implement your own `http.Tranport`.Define a `http.RoundTrip` helps. Following code is the self implemented `http.RoundTrip`: ```golang package fetch import ( "bufio" "fmt" "net" "net/http" "sync" utls "github.com/refraction-networking/utls" "golang.org/x/net/http2" )...