PamGram/core/plugin/__init__.py
omg-xtao b1141c65b8
♻️ separate core code
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
2023-08-02 20:10:08 +08:00

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",
)