tls_config.go 121 B

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