12 lines
127 B
Go
12 lines
127 B
Go
package state
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
// Seed our test randomness
|
|
rand.Seed(time.Now().UnixNano())
|
|
}
|