You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
420 B
16 lines
420 B
package client
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
type HTTPClientInterface interface {
|
|
Do(req *http.Request) (*http.Response, error)
|
|
Get(url string) (resp *http.Response, err error)
|
|
Post(url, contentType string, body io.Reader) (resp *http.Response, err error)
|
|
PostForm(url string, data url.Values) (resp *http.Response, err error)
|
|
Head(url string) (resp *http.Response, err error)
|
|
CloseIdleConnections()
|
|
}
|