mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-11 05:06:50 +00:00
7 lines
158 B
Go
7 lines
158 B
Go
package passGen
|
|
|
|
const (
|
|
LOWERCASE string = "abcdefghijklmnopqrstuvwxyz"
|
|
UPPERCASE = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
NUMBERS = "0123456789"
|
|
)
|