package main import ( "math/rand" "shadowTLS/cmd" "time" ) func init() { rand.Seed(time.Now().UnixNano()) } func main() { cmd.Execute() }