Versions in this module Expand all Collapse all v0 v0.0.6 Apr 18, 2026 v0.0.5 Apr 12, 2026 Changes in this version + type Clienter interface + Do func(req *http.Request) (*http.Response, error) + Get func(url string) (resp *http.Response, err error) + Head func(url string) (resp *http.Response, err error) + Post func(url, contentType string, body io.Reader) (resp *http.Response, err error) + PostForm func(url string, data url.Values) (resp *http.Response, err error) + type Config struct + JWT *JWT + TLS *TLS + Transport *Transport + type DefaultClient struct + func New(options ...Option) *DefaultClient + type JWT struct + Audience string + ID string + KeyPath string + type Option func(p *DefaultClient) + func WithConfig(config *Config) Option + type TLS struct + CACert string + Cert string + Key string + type Transport struct + MaxConnsPerHost int + MaxIdleConns int + MaxIdleConnsPerHost int + Timeout time.Duration