mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 22:15:45 +03:00
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
|
||
|
}
|