Tobias Trabelsi
7f2c465391
All checks were successful
ci/woodpecker/pr/pr Pipeline was successful
split pipeline
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
|
|
}
|