// Copyright (c) 2015-2023 Jeevanandam M (jeeva@myjeeva.com), All rights reserved.
// resty source code and usage is governed by a MIT style
// license that can be found in the LICENSE file.

// Package resty provides Simple HTTP and REST client library for Go.
package resty import ( ) // Version # of resty const Version = "2.10.0" // New method creates a new Resty client. func () *Client { , := cookiejar.New(&cookiejar.Options{PublicSuffixList: publicsuffix.List}) return createClient(&http.Client{ Jar: , }) } // NewWithClient method creates a new Resty client with given `http.Client`. func ( *http.Client) *Client { return createClient() } // NewWithLocalAddr method creates a new Resty client with given Local Address // to dial from. func ( net.Addr) *Client { , := cookiejar.New(&cookiejar.Options{PublicSuffixList: publicsuffix.List}) return createClient(&http.Client{ Jar: , Transport: createTransport(), }) }