1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-11 14:47:11 +00:00

10 lines
126 B
Go
Raw Normal View History

2018-07-30 12:05:51 +08:00
// +build go1.8
package redis
import "crypto/tls"
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
return cfg.Clone()
}