Justin Chadwell e2ebab5f26 vendor: update buildkit to master@cbfd4023383d
Signed-off-by: Justin Chadwell <me@jedevc.com>
2023-09-27 11:06:18 +01:00

12 lines
162 B
Go

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