Files
gluetun/internal/provider/ovpn/updater/roundtrip_test.go

10 lines
193 B
Go
Raw Normal View History

2024-10-23 09:05:32 +00:00
package updater
import "net/http"
type roundTripFunc func(r *http.Request) (*http.Response, error)
func (f roundTripFunc) RoundTrip(r *http.Request) (*http.Response, error) {
return f(r)
}