mirror of
https://github.com/Luzifer/password.git
synced 2025-01-01 18:51:18 +00:00
13 lines
137 B
Go
13 lines
137 B
Go
|
package main
|
||
|
|
||
|
var flags = struct {
|
||
|
CLI struct {
|
||
|
Length int
|
||
|
SpecialCharacters bool
|
||
|
}
|
||
|
|
||
|
Server struct {
|
||
|
Port int
|
||
|
}
|
||
|
}{}
|