From 65b1ed1ff56e4d795c67d4d0b31634decec7767b Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Mon, 6 Oct 2025 22:15:22 -0700 Subject: Add uploader tool --- internal/wordlist/wordlist.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 internal/wordlist/wordlist.go (limited to 'internal/wordlist/wordlist.go') diff --git a/internal/wordlist/wordlist.go b/internal/wordlist/wordlist.go new file mode 100644 index 0000000..de929bc --- /dev/null +++ b/internal/wordlist/wordlist.go @@ -0,0 +1,11 @@ +package wordlist + +import ( + _ "embed" + "strings" +) + +//go:embed wordlist.txt +var wordList string + +var Words = strings.Split(strings.TrimSuffix(wordList, "\n"), "\n") -- cgit v1.3.1