Files
buildkit/session/auth/authprovider/authconfig.go
2023-11-16 11:25:25 +08:00

13 lines
177 B
Go

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