mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-19 13:37:49 +08:00
17 lines
420 B
Go
17 lines
420 B
Go
|
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()
|
||
|
}
|