blob: fd079b4950f0c68fd00e5607f6ce231c54bbde25 [file] [edit]
package http
import "net/http"
type Client interface {
Do(*http.Request) (*http.Response, error)
}