feat:初版
This commit is contained in:
20
utils/__init__.py
Normal file
20
utils/__init__.py
Normal 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',
|
||||
]
|
||||
Reference in New Issue
Block a user