mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
9 lines
181 B
Python
9 lines
181 B
Python
from typing import cast
|
|
|
|
from ..i18n import Lang
|
|
from .typedefs import Lang as LangType
|
|
|
|
|
|
def get_lang() -> LangType:
|
|
return cast('LangType', Lang.template.template_language())
|