mirror of
https://github.com/astaxie/beego.git
synced 2024-11-05 10:40:56 +00:00
10 lines
126 B
Go
10 lines
126 B
Go
// +build go1.8
|
|
|
|
package redis
|
|
|
|
import "crypto/tls"
|
|
|
|
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
|
|
return cfg.Clone()
|
|
}
|