diff options
-rw-r--r-- | main.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -5,6 +5,7 @@ import ( "encoding/base64" "errors" "fmt" + "math/rand" "os" "runtime" "sort" @@ -321,3 +322,7 @@ loop: } } } + +func init() { + rand.Seed(time.Now().UnixNano()) +} |