mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-14 11:58:04 +00:00
9 lines
192 B
Go
9 lines
192 B
Go
package test
|
|
|
|
import "net/http"
|
|
|
|
type MockRoundTripper func(r *http.Request) *http.Response
|
|
|
|
func (f MockRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
|
|
return f(r), nil
|
|
}
|