13 lines
129 B
Go
13 lines
129 B
Go
package oitest
|
|
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
|
|
var (
|
|
randomness = rand.New(rand.NewSource( time.Now().UTC().UnixNano() ))
|
|
)
|