Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pool.go « client - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4d216427b6664f11471d84f86bad0e5ff4737c8 (plain)
1
2
3
4
5
6
7
8
// +build !darwin

package client

import "crypto/x509"

// systemCertPool has an override on macOS.
func systemCertPool() (*x509.CertPool, error) { return x509.SystemCertPool() }