MibooGram/core/plugin/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
363 B
Python
Raw Normal View History

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