diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-06 22:15:22 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-06 22:15:22 -0700 |
| commit | 65b1ed1ff56e4d795c67d4d0b31634decec7767b (patch) | |
| tree | 40fb48480c7d9273e084ad317378d5cd7384c44f /internal/wordlist/wordlist.go | |
| parent | Simplify simplify simplify (diff) | |
| download | roseh.moe-65b1ed1ff56e4d795c67d4d0b31634decec7767b.tar.zst | |
Add uploader tool
Diffstat (limited to 'internal/wordlist/wordlist.go')
| -rw-r--r-- | internal/wordlist/wordlist.go | 11 |
1 files changed, 11 insertions, 0 deletions
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") |
