forked from bot/app
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"
|