refactor: onmyoji gacha plugin overhaul (gacha-refactor)

This commit is contained in:
2026-05-03 09:55:15 +08:00
parent 9a8cb3ad6d
commit 0312c79c9d
20 changed files with 2699 additions and 2450 deletions

View File

@@ -0,0 +1,25 @@
"""
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",
]