Browse Source

feat: add tun to all distro

AkinoKaede 2 years ago
parent
commit
c6c1cdbb4f
1 changed files with 9 additions and 0 deletions
  1. 9 0
      main/distro/all/tun.go

+ 9 - 0
main/distro/all/tun.go

@@ -0,0 +1,9 @@
+//go:build linux && ((linux && amd64) || (linux && arm64))
+// +build linux
+// +build linux,amd64 linux,arm64
+
+package all
+
+import (
+	_ "github.com/v2fly/v2ray-core/v5/app/tun"
+)