mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 14:35:48 +03:00
9 lines
111 B
Go
9 lines
111 B
Go
//go:build !linux
|
|
|
|
package aghtls
|
|
|
|
import "crypto/x509"
|
|
|
|
func rootCAs() (roots *x509.CertPool) {
|
|
return nil
|
|
}
|