feat: first init

This commit is contained in:
Cereska
2026-02-23 07:45:30 -05:00
commit 187f6df795
5 changed files with 146 additions and 0 deletions

24
main.go Normal file
View File

@@ -0,0 +1,24 @@
package main
import (
"create/web"
"github.com/charmbracelet/log"
)
func main() {
log.Info("Welcome to Password Checker")
// Fetch common words
commonWords, err := web.FetchCommonWords()
if err != nil {
log.Fatal(err)
}
// Fetch common passwords
commonPasswords, err := web.FetchCommonPasswords()
if err != nil {
log.Fatal(err)
}
}