Versions in this module Expand all Collapse all v0 v0.2.2 May 24, 2018 Changes in this version + type Client struct + Log func(s string) + func NewClient(endpoint string, opts ...ClientOption) *Client + func (c *Client) Run(ctx context.Context, req *Request, resp interface{}) error + type ClientOption func(*Client) + func UseMultipartForm() ClientOption + func WithHTTPClient(httpclient *http.Client) ClientOption + type Request struct + Header http.Header + func NewRequest(q string) *Request + func (req *Request) File(fieldname, filename string, r io.Reader) + func (req *Request) Var(key string, value interface{})