mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
13 lines
145 B
Go
13 lines
145 B
Go
|
// +build !darwin
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
"net"
|
||
|
)
|
||
|
|
||
|
func defaultRouteIP() (net.IP, error) {
|
||
|
return nil, errors.New("not supported")
|
||
|
}
|