mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-11 19:42:29 +08:00
8 lines
171 B
Go
8 lines
171 B
Go
|
//go:build windows
|
||
|
|
||
|
package dns
|
||
|
|
||
|
func loadSystemResolver() (clients []dnsClient, err error) {
|
||
|
return nil, errors.New("system resolver is not yet supported on Windows")
|
||
|
}
|