mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 17:15:05 +08:00
16 lines
345 B
Python
16 lines
345 B
Python
"""
|
|
钉钉群机器人 协议适配
|
|
============================
|
|
|
|
协议详情请看: `钉钉文档`_
|
|
|
|
.. _钉钉文档:
|
|
https://ding-doc.dingtalk.com/doc#/serverapi2/krgddi
|
|
|
|
"""
|
|
|
|
from .bot import Bot
|
|
from .event import Event
|
|
from .message import Message, MessageSegment
|
|
from .exception import ApiError, SessionExpired, DingAdapterException
|