Files
v2ray_simple/utils/strings_others.go
2022-12-16 16:03:12 +08:00

11 lines
343 B
Go
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//go:build !(darwin || dragonfly || freebsd || linux || netbsd || openbsd)
package utils
func GetRandomWord() string {
// 在非 unix/linux 系统下, 不必使用 babble包因为该包太大了占用空间.
// unix下我们也没使用babble包因为代码太简单直接复制过来了。
return GenerateRandomString()
}