nonebot2/nonebot/matcher.py
2022-02-06 14:52:50 +08:00

19 lines
668 B
Python

"""本模块实现事件响应器的创建与运行,并提供一些快捷方法来帮助用户更好的与机器人进行对话。
FrontMatter:
sidebar_position: 3
description: nonebot.matcher 模块
"""
from nonebot.internal.matcher import Matcher as Matcher
from nonebot.internal.matcher import matchers as matchers
from nonebot.internal.matcher import current_bot as current_bot
from nonebot.internal.matcher import current_event as current_event
from nonebot.internal.matcher import current_handler as current_handler
from nonebot.internal.matcher import current_matcher as current_matcher
__autodoc__ = {
"Matcher": True,
"matchers": True,
}