Add tun support

This commit is contained in:
世界
2023-04-06 19:00:46 +08:00
parent 18e5b0963f
commit 603264017a
13 changed files with 935 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
package tun
import "github.com/xtls/xray-core/features"
type Interface interface {
features.Feature
}
func InterfaceType() interface{} {
return (*Interface)(nil)
}