traefik/vendor/github.com/exoscale/egoscale/init.go
2017-10-31 10:42:03 +01:00

21 lines
406 B
Go

package egoscale
import (
"crypto/tls"
"net/http"
)
func NewClient(endpoint string, apiKey string, apiSecret string) *Client {
cs := &Client{
client: &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{InsecureSkipVerify: false},
},
},
endpoint: endpoint,
apiKey: apiKey,
apiSecret: apiSecret,
}
return cs
}