| 9 | var _ TLSer = (*TLSExternalConfig)(nil) |
| 10 | |
| 11 | type TLSExternalConfig struct { |
| 12 | certFile string |
| 13 | keyFile string |
| 14 | } |
| 15 | |
| 16 | func NewTLSExternalConfig(certFile, keyFile string) *TLSExternalConfig { |
| 17 | return &TLSExternalConfig{ |
nothing calls this directly
no outgoing calls
no test coverage detected