feat:初版

This commit is contained in:
2025-12-03 15:48:44 +08:00
commit b4df26f61d
199 changed files with 23434 additions and 0 deletions

20
utils/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
"""
Utils - 工具类模块
包含插件系统、事件管理、装饰器等核心工具
"""
from .plugin_base import PluginBase
from .plugin_manager import PluginManager
from .event_manager import EventManager
from .decorators import *
from .singleton import Singleton
from .hookbot import HookBot
__all__ = [
'PluginBase',
'PluginManager',
'EventManager',
'Singleton',
'HookBot',
]