mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 13:27:26 +08:00
2 lines
89 B
Python
2 lines
89 B
Python
def detect_lang(input_str: str) -> str:
|
|
return "zh-CN" if input_str == "zh" else "en" |