8 lines
181 B
Go
8 lines
181 B
Go
package testutils
|
|
|
|
import "net/http"
|
|
|
|
// MockClientService is used to allow mocking the HTTP client when testing.
|
|
type MockClientService interface {
|
|
GetHTTPClient() *http.Client
|
|
}
|