mirror of
https://github.com/Luzifer/password.git
synced 2024-11-09 01:40:04 +00:00
17 lines
225 B
Go
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
|
|
}
|
|
}{}
|