10 lines
189 B
Go
10 lines
189 B
Go
package dns
|
|
|
|
import "net/http"
|
|
|
|
type roundTripFunc func(r *http.Request) (*http.Response, error)
|
|
|
|
func (s roundTripFunc) RoundTrip(r *http.Request) (*http.Response, error) {
|
|
return s(r)
|
|
}
|