Skip to content

Commit

Permalink
feat(utils/random_utils): Add const ALL chars
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejsika committed Sep 2, 2023
1 parent 14abdc9 commit ac10b67
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions utils/random_utils/random_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const (
LOWER = "abcdefghijklmnopqrstuvwxyz"
UPPER = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
DIGITS = "0123456789"
ALL = LOWER + UPPER + DIGITS
)

func RandomString(length int, chars string) string {
Expand Down

0 comments on commit ac10b67

Please sign in to comment.