mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-20 18:57:44 +08:00
12 lines
162 B
Go
12 lines
162 B
Go
package authprovider
|
|
|
|
type AuthTLSConfig struct {
|
|
RootCAs []string
|
|
KeyPairs []TLSKeyPair
|
|
}
|
|
|
|
type TLSKeyPair struct {
|
|
Key string
|
|
Certificate string
|
|
}
|