Files

26 lines
648 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
handlers包 - 抽卡命令处理函数
将各handler函数集中在此包中便于__init__.py统一导入和注册matcher。
"""
from .gacha import handle_gacha
from .triple_gacha import handle_triple_gacha
from .stats import handle_stats
from .query import handle_query
from .rank import handle_rank
from .daily_stats import handle_daily_stats
from .achievement import handle_achievement
from .intro import handle_intro
__all__ = [
"handle_gacha",
"handle_triple_gacha",
"handle_stats",
"handle_query",
"handle_rank",
"handle_daily_stats",
"handle_achievement",
"handle_intro",
]