7 lines
197 B
Python
7 lines
197 B
Python
from cool_domain.word_list import WordList
|
|
|
|
LANGS: dict[str, WordList] = {
|
|
"english": WordList("english", "english/words_alpha.txt"),
|
|
"french": WordList("french", "french/francais.txt"),
|
|
}
|