mirror of https://github.com/v2ray/v2ray-core
10 lines
116 B
Go
10 lines
116 B
Go
|
// +build windows
|
||
|
|
||
|
package tls
|
||
|
|
||
|
import "crypto/x509"
|
||
|
|
||
|
func (c *Config) GetCertPool() *x509.CertPool {
|
||
|
return nil
|
||
|
}
|