mirror of
https://github.com/MatsuriDayo/nekoray.git
synced 2025-12-17 20:44:38 +03:00
20 lines
245 B
Go
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) {
|
|
}
|