mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
restructure startup & config logic
This commit is contained in:
14
internal/randx/string.go
Normal file
14
internal/randx/string.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package randx
|
||||
|
||||
import (
|
||||
"math/rand"
|
||||
)
|
||||
|
||||
// String returns a random string with the given length
|
||||
func String(characters string, length int) string {
|
||||
bytes := make([]byte, length)
|
||||
for i := range bytes {
|
||||
bytes[i] = characters[rand.Int63()%int64(len(characters))]
|
||||
}
|
||||
return string(bytes)
|
||||
}
|
||||
Reference in New Issue
Block a user