mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-21 17:05:29 -05:00
11 lines
127 B
Go
11 lines
127 B
Go
package state
|
|
|
|
import (
|
|
"math/rand"
|
|
"time"
|
|
)
|
|
|
|
func init() {
|
|
// Seed our test randomness
|
|
rand.Seed(time.Now().UnixNano())
|
|
}
|