mirror of
https://github.com/PaiGramTeam/MibooGram.git
synced 2024-11-16 21:00:27 +00:00
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",
|
||
|
)
|