1
0
Fork 0
golang-github-nicholas-fedo.../internal/testutils/mockclientservice.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

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
}