Dennis Rodewyk il y a 5 ans
Parent
commit
e546856ff8
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. 2 3
      app.go

+ 2 - 3
app.go

@@ -3,10 +3,10 @@ package main
 import (
 	"flag"
 	"fmt"
+	"github.com/chaosbunker/haveibeenpwned"
+	"github.com/trustelem/zxcvbn"
 	"math"
 	"os"
-	"github.com/trustelem/zxcvbn"
-	"github.com/chaosbunker/haveibeenpwned"
 )
 
 func contains(arr [3]string, str string) bool {
@@ -90,6 +90,5 @@ func main() {
 	}
 	if haveIBeenPwned == true {
 		fmt.Println("\nThis password has been compromised and should not be used.")
-		return
 	}
 }