Files
gitea-release-resource/vendor/github.com/xoebus/statham/README.md
Zachary Gershman dc2870080e Move to vendor dir
2016-06-21 08:09:19 -07:00

454 B

statham

jason statham is the per-domain transporter

Jason Statham in The Transporter

installation

go get github.com/xoebus/statham

usage

defaultTransport := &http.Transport{...}
tr1 := &http.Transport{...}
tr2 := &http.Transport{...}

tr := statham.NewTransport(defaultTransport, statham.Mapping{
  "github.com": tr1,
  "google.com": tr2,
})

client := &http.Client{Transport: tr}