stuff
This commit is contained in:
parent
b4121a3670
commit
6625ab0216
2
main.go
2
main.go
|
@ -147,7 +147,7 @@ func randBytes(n int) []byte {
|
|||
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"
|
||||
b := make([]byte, n)
|
||||
for i := range b {
|
||||
b[i] = letterBytes[rand.Intn(len(letterBytes))]
|
||||
b[i] = letterBytes[rand.Int(len(letterBytes))]
|
||||
}
|
||||
return b
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue