tls_config.go 163 B

123456789101112
  1. package server
  2. import (
  3. "crypto/tls"
  4. )
  5. // TLSConfig holds the TLS configuration.
  6. type TLSConfig struct {
  7. Scheme string
  8. Server tls.Config
  9. Client tls.Config
  10. }