1
0
mirror of https://github.com/rancher/rke.git synced 2025-07-16 08:25:51 +00:00
rke/vendor/github.com/docker/go-connections/tlsconfig/certpool_other.go
Sebastiaan van Steenis 8355b2ad68 vendor types
2020-03-03 18:08:30 +01:00

14 lines
249 B
Go

// +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
}