feat: add tun to all distro

This commit is contained in:
AkinoKaede 2023-05-28 18:08:22 +08:00 committed by Shelikhoo
parent f9ea8609cc
commit c6c1cdbb4f
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
1 changed files with 9 additions and 0 deletions

9
main/distro/all/tun.go Normal file
View File

@ -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"
)