mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 19:33:59 +00:00
12 lines
146 B
Go
12 lines
146 B
Go
//go:build !darwin
|
|
|
|
package main
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
)
|
|
|
|
func defaultRouteIP() (net.IP, error) {
|
|
return nil, errors.New("not supported")
|
|
}
|