mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-09-19 20:15:59 +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")
|
||
|
}
|