Forked from
asapo / asapo
1243 commits behind the upstream repository.
-
Sergey Yakubov authoredSergey Yakubov authored
rest_client.go 140 B
package rest_client
import "net/http"
type HTTPClient interface {
Do(req *http.Request) (*http.Response, error)
}
var Client HTTPClient