mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-06 02:46:40 +00:00
10 lines
246 B
Go
10 lines
246 B
Go
package passgen
|
|
|
|
const (
|
|
// LOWERCASE characters if latin alphabet
|
|
LOWERCASE string = "abcdefghijklmnopqrstuvwxyz"
|
|
//UPPERCASE characters if latin alphabet
|
|
UPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
// NUMBERS arabic
|
|
NUMBERS = "0123456789"
|
|
)
|