mirror of
https://github.com/moby/buildkit.git
synced 2026-08-07 08:10:44 +00:00
13 lines
177 B
Go
13 lines
177 B
Go
package authprovider
|
|
|
|
type AuthTLSConfig struct {
|
|
RootCAs []string
|
|
Insecure bool
|
|
KeyPairs []TLSKeyPair
|
|
}
|
|
|
|
type TLSKeyPair struct {
|
|
Key string
|
|
Certificate string
|
|
}
|