Files
nekoray/go/tun_stub.go
2022-08-08 11:11:25 +08:00

20 lines
245 B
Go

//go:build !linux
package main
import (
"errors"
"libcore"
"nekoray_core/gen"
)
func TunStart(config *gen.SetTunReq) error {
return errors.New("not for this platform")
}
func TunStop() {
}
func TunSetV2ray(i *libcore.V2RayInstance) {
}