mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +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")
|
||
|
}
|