Move to vendor dir

This commit is contained in:
Zachary Gershman
2016-06-21 08:09:19 -07:00
parent cd28eb3859
commit dc2870080e
282 changed files with 135 additions and 6438 deletions

26
vendor/github.com/xoebus/statham/README.md generated vendored Normal file
View File

@@ -0,0 +1,26 @@
# statham
*jason statham is the per-domain transporter*
![Jason Statham in The Transporter](http://i.imgur.com/9EebofV.jpg)
## installation
``` sh
go get github.com/xoebus/statham
```
## usage
``` go
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}
```