Files
gluetun/internal/dns/roundtrip_test.go

10 lines
189 B
Go
Raw Normal View History

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)
}