1
0
Fork 0
mirror of https://github.com/Luzifer/password.git synced 2024-11-08 17:30:10 +00:00
password/flags.go
Knut Ahlers f9c435af1a
Add commandline flag to generate multiple passwords
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-10-31 12:57:19 +01:00

17 lines
225 B
Go

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