driftctl/pkg/http/client.go

9 lines
161 B
Go
Raw Normal View History

2021-04-30 12:47:22 +00:00
package http
import "net/http"
// HTTPClient is an interface for http.Client type
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}