1
0
mirror of https://github.com/astaxie/beego.git synced 2025-01-11 11:47:11 +00:00
2018-07-30 12:05:51 +08:00

10 lines
126 B
Go

// +build go1.8
package redis
import "crypto/tls"
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
return cfg.Clone()
}