mirror of
https://github.com/e1732a364fed/v2ray_simple.git
synced 2025-12-24 13:27:56 +08:00
11 lines
343 B
Go
11 lines
343 B
Go
//go:build !(darwin || dragonfly || freebsd || linux || netbsd || openbsd)
|
||
|
||
package utils
|
||
|
||
func GetRandomWord() string {
|
||
// 在非 unix/linux 系统下, 不必使用 babble包,因为该包太大了,占用空间.
|
||
// unix下我们也没使用babble包,因为代码太简单,直接复制过来了。
|
||
|
||
return GenerateRandomString()
|
||
}
|