mirror of
https://github.com/int128/kubelogin.git
synced 2026-08-23 21:06:15 +00:00
12 lines
227 B
Go
12 lines
227 B
Go
package tlsclientconfig
|
|
|
|
import "crypto/tls"
|
|
|
|
// Config represents a config for TLS client.
|
|
type Config struct {
|
|
CACertFilename []string
|
|
CACertData []string
|
|
SkipTLSVerify bool
|
|
Renegotiation tls.RenegotiationSupport
|
|
}
|