33 lines
565 B
Go
33 lines
565 B
Go
package client
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"net/http"
|
|
)
|
|
|
|
|
|
type Client struct {
|
|
httpClient *http.Client
|
|
authenticator Authenticator
|
|
userAgent string
|
|
}
|
|
|
|
func NewClient(skipTLSVerify bool) *Client {
|
|
transport := &http.Transport{
|
|
TLSClientConfig: &tls.Config{
|
|
InsecureSkipVerify: skipTLSVerify,
|
|
},
|
|
}
|
|
httpClient := &http.Client{
|
|
Transport: transport,
|
|
}
|
|
return &Client{
|
|
httpClient: httpClient,
|
|
userAgent: "ociClient/1.0",
|
|
}
|
|
}
|
|
|
|
func (cli *Client) SetAuthenticator(auth Authenticator) {
|
|
cli.authenticator = auth
|
|
}
|