mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08: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()
|
|
}
|