mirror of
https://github.com/status-im/zxcvbn-go.git
synced 2025-01-31 13:45:02 +00:00
14 lines
206 B
Go
14 lines
206 B
Go
package main
|
|
|
|
import (
|
|
// "zxcvbn-go/adjacency"
|
|
"fmt"
|
|
"zxcvbn-go/frequency"
|
|
)
|
|
|
|
func main(){
|
|
fmt.Println("Start")
|
|
// fmt.Println(adjacency.AdjacencyGph)
|
|
|
|
fmt.Println(len(frequency.FreqLists.Passwords))
|
|
} |