Versions in this module Expand all Collapse all v1 v1.0.1 Sep 25, 2024 v1.0.0 Sep 25, 2024 Changes in this version + type Auth struct + Password string + Token string + Username string + type FastBuilder struct + func Build() *FastBuilder + func (b *FastBuilder) Auth(auth Auth) *FastBuilder + func (b *FastBuilder) Delete() (*Response, error) + func (b *FastBuilder) Get() (*Response, error) + func (b *FastBuilder) Headers(headers []Header) *FastBuilder + func (b *FastBuilder) Patch() (*Response, error) + func (b *FastBuilder) Payload(payload []byte) *FastBuilder + func (b *FastBuilder) Post() (*Response, error) + func (b *FastBuilder) Result(result interface{}) *FastBuilder + func (b *FastBuilder) Timeout(timeout time.Duration) *FastBuilder + func (b *FastBuilder) Uri(url string) *FastBuilder + type Header struct + Tag string + Value interface{} + type RequestOptions struct + Auth Auth + Headers []Header + Timeout time.Duration + type Response struct + Body interface{} + Code int + Msg string