mirror of
https://github.com/JoeanAmier/XHS-Downloader.git
synced 2025-12-26 04:48:05 +08:00
14 lines
189 B
Python
14 lines
189 B
Python
from .chinese import Chinese
|
|
from .english import English
|
|
|
|
__all__ = [
|
|
"LANGUAGE",
|
|
"Chinese",
|
|
"English",
|
|
]
|
|
|
|
LANGUAGE = {
|
|
Chinese.code: Chinese,
|
|
English.code: English,
|
|
}
|