1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-12-20 21:01:17 +00:00
password/flags.go

14 lines
162 B
Go
Raw Permalink Normal View History

package main
var flags = struct {
CLI struct {
Length int
SpecialCharacters bool
JSON bool
}
Server struct {
Port int
}
}{}