Files
buildx/vendor/github.com/moby/buildkit/session/auth/authprovider/authconfig.go

13 lines
177 B
Go

package authprovider
type AuthTLSConfig struct {
RootCAs []string
Insecure bool
KeyPairs []TLSKeyPair
}
type TLSKeyPair struct {
Key string
Certificate string
}