10 lines
111 B
Go
10 lines
111 B
Go
//go:build !linux
|
|
|
|
package aghtls
|
|
|
|
import "crypto/x509"
|
|
|
|
func rootCAs() (roots *x509.CertPool) {
|
|
return nil
|
|
}
|