26 lines
648 B
Python
26 lines
648 B
Python
"""
|
||
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",
|
||
]
|