18 lines
310 B
Go
18 lines
310 B
Go
|
package utils
|
||
|
|
||
|
import "math/rand"
|
||
|
|
||
|
const letterBytes = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||
|
|
||
|
func RandStringBytes(n int) string {
|
||
|
b := make([]byte, n)
|
||
|
for i := range b {
|
||
|
b[i] = letterBytes[rand.Intn(len(letterBytes))]
|
||
|
}
|
||
|
return string(b)
|
||
|
}
|
||
|
|
||
|
func BoolPointer(b bool) *bool {
|
||
|
return &b
|
||
|
}
|