mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
12 lines
174 B
Go
12 lines
174 B
Go
package roundtripware
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type RoundTripperFunc Handler
|
|
|
|
func (fn RoundTripperFunc) RoundTrip(r *http.Request) (*http.Response, error) {
|
|
return fn(r)
|
|
}
|