1
0

added new cache libraries

This commit is contained in:
kolaente
2018-09-13 19:53:39 +02:00
parent 416745ddab
commit 716b06feff
20 changed files with 3651 additions and 0 deletions

9
vendor/github.com/garyburd/redigo/redis/go18.go generated vendored Normal file
View File

@ -0,0 +1,9 @@
// +build go1.8
package redis
import "crypto/tls"
func cloneTLSConfig(cfg *tls.Config) *tls.Config {
return cfg.Clone()
}