nonebot2/nonebot/adapters/ding/__init__.py

18 lines
429 B
Python
Raw Normal View History

2020-12-03 00:59:32 +08:00
"""
钉钉群机器人 协议适配
============================
协议详情请看: `钉钉文档`_
.. _钉钉文档:
https://ding-doc.dingtalk.com/doc#/serverapi2/krgddi
"""
2020-12-03 17:08:16 +08:00
from .utils import log
2020-12-03 00:59:32 +08:00
from .bot import Bot
from .event import Event
from .message import Message, MessageSegment
2020-12-03 17:08:16 +08:00
from .exception import (DingAdapterException, ApiNotAvailable, NetworkError,
ActionFailed, SessionExpired)