mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-14 04:01:09 -04:00
11 lines
137 B
Go
11 lines
137 B
Go
package google
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func genRandInt() int {
|
|
return rand.New(rand.NewSource(time.Now().UnixNano())).Int()
|
|
}
|