mirror of
https://github.com/PaiGramTeam/genshin-wiki.git
synced 2024-11-22 07:07:40 +00:00
18 lines
178 B
Python
18 lines
178 B
Python
|
from typing import Literal
|
||
|
|
||
|
Lang = Literal[
|
||
|
"chs",
|
||
|
"cht",
|
||
|
"de",
|
||
|
"en",
|
||
|
"es",
|
||
|
"fr",
|
||
|
"id",
|
||
|
"jp",
|
||
|
"kr",
|
||
|
"pt",
|
||
|
"ru",
|
||
|
"th",
|
||
|
"vi",
|
||
|
]
|