mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +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")
|
|
}
|