checker: add verbose flag
This commit is contained in:
parent
7adbd4402a
commit
daa0e00619
2 changed files with 14 additions and 0 deletions
|
@ -14,6 +14,7 @@ import (
|
|||
func main() {
|
||||
var dsn = flag.String("dsn", adlin.DSNGenerator(), "DSN to connect to the MySQL server")
|
||||
flag.IntVar(&baseChallenge, "basechallenge", baseChallenge, "Base number for current challenges")
|
||||
flag.BoolVar(&verbose, "verbose", verbose, "Enable verbose mode")
|
||||
flag.Parse()
|
||||
|
||||
// Initialize contents
|
||||
|
|
Reference in a new issue