add github.com/docker/docker dependency

This commit is contained in:
yanmingfan
2018-05-23 15:23:39 +08:00
parent 119be8a0ac
commit 923bbe42f7
5848 changed files with 1389516 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
// +build !go1.7
package tlsconfig
import (
"crypto/x509"
)
// SystemCertPool returns an new empty cert pool,
// accessing system cert pool is supported in go 1.7
func SystemCertPool() (*x509.CertPool, error) {
return x509.NewCertPool(), nil
}