etcd/server/tls_config.go
2013-10-30 17:36:15 -07:00

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
}