storj/pkg/process/rand.go
2019-11-12 10:03:41 -07:00

15 lines
237 B
Go

// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
package process
import (
"math/rand"
"time"
)
func init() {
// Initialize the seed for the math/rand default source
rand.Seed(time.Now().UnixNano())
}