mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 09:05:04 +08:00
18 lines
429 B
Python
18 lines
429 B
Python
"""
|
|
钉钉群机器人 协议适配
|
|
============================
|
|
|
|
协议详情请看: `钉钉文档`_
|
|
|
|
.. _钉钉文档:
|
|
https://ding-doc.dingtalk.com/doc#/serverapi2/krgddi
|
|
|
|
"""
|
|
|
|
from .utils import log
|
|
from .bot import Bot
|
|
from .event import Event
|
|
from .message import Message, MessageSegment
|
|
from .exception import (DingAdapterException, ApiNotAvailable, NetworkError,
|
|
ActionFailed, SessionExpired)
|