12345678910111213141516 |
- 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()
- }
|