summaryrefslogtreecommitdiffstats
path: root/internal/wordlist/wordlist.go
blob: de929bc8545ab35c4a3ce0bd76c708175b26c329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package wordlist

import (
	_ "embed"
	"strings"
)

//go:embed wordlist.txt
var wordList string

var Words = strings.Split(strings.TrimSuffix(wordList, "\n"), "\n")