mirror of
https://github.com/telanflow/mps.git
synced 2025-12-24 11:30:55 +08:00
12 lines
157 B
Go
12 lines
157 B
Go
package mps
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
var (
|
|
// global random numbers for MPS. Go v1.20
|
|
mpsRand = rand.New(rand.NewSource(time.Now().UnixNano()))
|
|
)
|