Files
cool-domain/cool_domain/constants.py
T
2026-06-15 15:09:27 +02:00

7 lines
186 B
Python

from .word_list import WordList
LANGS: dict[str, WordList] = {
"english": WordList("english", "english/words_alpha.txt"),
"french": WordList("french", "french/francais.txt"),
}