mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
12 lines
220 B
Go
12 lines
220 B
Go
|
// +build go1.6
|
||
|
|
||
|
package sdkrand
|
||
|
|
||
|
import "math/rand"
|
||
|
|
||
|
// Read provides the stub for math.Rand.Read method support for go version's
|
||
|
// 1.6 and greater.
|
||
|
func Read(r *rand.Rand, p []byte) (int, error) {
|
||
|
return r.Read(p)
|
||
|
}
|