6 lines
98 B
Go
6 lines
98 B
Go
package store
|
|
|
|
import "crypto/rand"
|
|
|
|
func randRead(b []byte) (int, error) { return rand.Read(b) }
|