2022-04-25 12:23:57 -05:00

12 lines
127 B
Go

package state
import (
"math/rand"
"time"
)
func init() {
// Seed our test randomness
rand.Seed(time.Now().UnixNano())
}