mirror of
https://github.com/PaiGramTeam/PamGram.git
synced 2024-11-16 12:02:16 +00:00
27 lines
516 B
Python
27 lines
516 B
Python
"""插件"""
|
|
|
|
from gram_core.plugin._handler import (
|
|
conversation,
|
|
error_handler,
|
|
handler,
|
|
ConversationDataType,
|
|
ConversationData,
|
|
HandlerData,
|
|
)
|
|
from gram_core.plugin._job import TimeType, job
|
|
from gram_core.plugin._plugin import Plugin, PluginType, get_all_plugins
|
|
|
|
__all__ = (
|
|
"Plugin",
|
|
"PluginType",
|
|
"get_all_plugins",
|
|
"handler",
|
|
"error_handler",
|
|
"conversation",
|
|
"ConversationDataType",
|
|
"ConversationData",
|
|
"HandlerData",
|
|
"job",
|
|
"TimeType",
|
|
)
|