1 // +build go1.8 2 3 package redis 4 5 import "crypto/tls" 6 7 func cloneTLSConfig(cfg *tls.Config) *tls.Config { 8 return cfg.Clone() 9 } 10
View as plain text