mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-23 04:07:45 +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
|
|
}
|