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