2023-11-29 16:40:13 +01:00

13 lines
177 B
Go

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