2019-05-31 01:52:10 +03:00
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2019-06-21 17:13:54 +03:00
|
|
|
"github.com/micro/go-micro/client/selector"
|
2019-06-21 19:20:41 +03:00
|
|
|
"github.com/micro/go-micro/registry"
|
2019-05-31 01:52:10 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func NewRoundTripper(opts ...Option) http.RoundTripper {
|
|
|
|
options := Options{
|
|
|
|
Registry: registry.DefaultRegistry,
|
|
|
|
}
|
|
|
|
for _, o := range opts {
|
|
|
|
o(&options)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &roundTripper{
|
|
|
|
rt: http.DefaultTransport,
|
|
|
|
st: selector.Random,
|
|
|
|
opts: options,
|
|
|
|
}
|
|
|
|
}
|