mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-16 04:35:49 +00:00
865f29bd77
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
17 lines
363 B
Python
17 lines
363 B
Python
"""插件"""
|
|
|
|
from gram_core.plugin._handler import conversation, error_handler, handler
|
|
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",
|
|
"job",
|
|
"TimeType",
|
|
)
|