mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 12:51:45 +00:00
233e7ab58d
Co-authored-by: luoshuijs <luoshuijs@outlook.com> Co-authored-by: Karako <karakohear@gmail.com> Co-authored-by: xtaodada <xtao@xtaolink.cn>
17 lines
348 B
Python
17 lines
348 B
Python
"""插件"""
|
|
|
|
from core.plugin._handler import conversation, error_handler, handler
|
|
from core.plugin._job import TimeType, job
|
|
from core.plugin._plugin import Plugin, PluginType, get_all_plugins
|
|
|
|
__all__ = (
|
|
"Plugin",
|
|
"PluginType",
|
|
"get_all_plugins",
|
|
"handler",
|
|
"error_handler",
|
|
"conversation",
|
|
"job",
|
|
"TimeType",
|
|
)
|