mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
13 lines
163 B
Go
13 lines
163 B
Go
package server
|
|
|
|
import (
|
|
"crypto/tls"
|
|
)
|
|
|
|
// TLSConfig holds the TLS configuration.
|
|
type TLSConfig struct {
|
|
Scheme string
|
|
Server tls.Config
|
|
Client tls.Config
|
|
}
|