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