1
0
mirror of https://github.com/Luzifer/password.git synced 2024-09-19 18:32:57 +00:00
password/flags.go
Knut Ahlers c8c6485064
Add ability to generate XKCD style passwords to tool
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2017-10-31 12:24:25 +01:00

17 lines
201 B
Go

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