mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
Break the switch/case
This commit is contained in:
parent
d975c5d1db
commit
9707c875b4
1 changed files with 2 additions and 1 deletions
3
apg.go
3
apg.go
|
@ -8,7 +8,7 @@ import (
|
|||
|
||||
// Constants
|
||||
const DefaultPwLenght int = 20
|
||||
const VersionString string = "0.2.5"
|
||||
const VersionString string = "0.2.6"
|
||||
const PwLowerCharsHuman string = "abcdefghjkmnpqrstuvwxyz"
|
||||
const PwUpperCharsHuman string = "ABCDEFGHJKMNPQRSTUVWXYZ"
|
||||
const PwLowerChars string = "abcdefghijklmnopqrstuvwxyz"
|
||||
|
@ -90,6 +90,7 @@ func main() {
|
|||
os.Exit(1)
|
||||
}
|
||||
fmt.Printf("%v (%v)\n", pwString, spelledPw)
|
||||
break
|
||||
}
|
||||
default:
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue