mirror of
https://github.com/goreleaser/goreleaser.git
synced 2024-12-31 01:53:50 +02:00
12 lines
142 B
Go
12 lines
142 B
Go
// +build !windows
|
|
|
|
package http
|
|
|
|
import (
|
|
"crypto/x509"
|
|
)
|
|
|
|
func loadSystemRoots() (*x509.CertPool, error) {
|
|
return x509.SystemCertPool()
|
|
}
|