1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00
goreleaser/internal/http/system.go

12 lines
142 B
Go

// +build !windows
package http
import (
"crypto/x509"
)
func loadSystemRoots() (*x509.CertPool, error) {
return x509.SystemCertPool()
}