mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Add runtime warnings
This commit is contained in:
parent
29c329dc52
commit
32e2730ec6
29 changed files with 677 additions and 16 deletions
37
constant/os.go
Normal file
37
constant/os.go
Normal file
|
@ -0,0 +1,37 @@
|
|||
package constant
|
||||
|
||||
import (
|
||||
"github.com/sagernet/sing-box/constant/goos"
|
||||
)
|
||||
|
||||
const IsAndroid = goos.IsAndroid == 1
|
||||
|
||||
const IsDarwin = goos.IsDarwin == 1
|
||||
|
||||
const IsDragonfly = goos.IsDragonfly == 1
|
||||
|
||||
const IsFreebsd = goos.IsFreebsd == 1
|
||||
|
||||
const IsHurd = goos.IsHurd == 1
|
||||
|
||||
const IsIllumos = goos.IsIllumos == 1
|
||||
|
||||
const IsIos = goos.IsIos == 1
|
||||
|
||||
const IsJs = goos.IsJs == 1
|
||||
|
||||
const IsLinux = goos.IsLinux == 1
|
||||
|
||||
const IsNacl = goos.IsNacl == 1
|
||||
|
||||
const IsNetbsd = goos.IsNetbsd == 1
|
||||
|
||||
const IsOpenbsd = goos.IsOpenbsd == 1
|
||||
|
||||
const IsPlan9 = goos.IsPlan9 == 1
|
||||
|
||||
const IsSolaris = goos.IsSolaris == 1
|
||||
|
||||
const IsWindows = goos.IsWindows == 1
|
||||
|
||||
const IsZos = goos.IsZos == 1
|
Loading…
Add table
Add a link
Reference in a new issue