github.com/xmidt-org/webpa-common@v1.11.9/xhttp/client.go (about)

     1  package xhttp
     2  
     3  import "net/http"
     4  
     5  // Client is an interface implemented by net/http.Client
     6  type Client interface {
     7  	Do(*http.Request) (*http.Response, error)
     8  }
     9  
    10  var _ Client = (*http.Client)(nil)