Documentation ¶
Index ¶
- Variables
- func Do(ctx context.Context, method, url string, data any) (*http.Response, error)
- func DoRequest(r *http.Request) (*http.Response, error)
- func Parse(resp *http.Response, val any) error
- func ParseHeaders(resp *http.Response, val any) error
- func ParseJsonBody(resp *http.Response, val any) error
- type Option
- type Service
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrGetWithBody = errors.New("HTTP GET should not have body")
ErrGetWithBody indicates that GET request with body.
Functions ¶
func Do ¶ added in v1.3.3
Do sends an HTTP request with the given arguments and returns an HTTP response. data is automatically marshal into a *httpRequest, typically it's defined in an API file.
func ParseHeaders ¶
ParseHeaders parses the response headers.
Types ¶
type Service ¶
type Service interface { // Do sends an HTTP request with the given arguments and returns an HTTP response. Do(ctx context.Context, method, url string, data any) (*http.Response, error) // DoRequest sends a HTTP request to the service. DoRequest(r *http.Request) (*http.Response, error) }
Service represents a remote HTTP service.
func NewService ¶
NewService returns a remote service with the given name. opts are used to customize the *http.Client.
Click to show internal directories.
Click to hide internal directories.