2020-08-26 14:43:27 +08:00
|
|
|
"""
|
|
|
|
CQHTTP (OneBot) v11 协议适配
|
|
|
|
============================
|
|
|
|
|
|
|
|
协议详情请看: `CQHTTP`_ | `OneBot`_
|
|
|
|
|
|
|
|
.. _CQHTTP:
|
2020-12-01 11:03:08 +08:00
|
|
|
https://github.com/howmanybots/onebot/blob/master/README.md
|
2020-08-26 14:43:27 +08:00
|
|
|
.. _OneBot:
|
2020-12-01 11:03:08 +08:00
|
|
|
https://github.com/howmanybots/onebot/blob/master/README.md
|
2020-08-26 14:43:27 +08:00
|
|
|
"""
|
2020-07-05 20:39:34 +08:00
|
|
|
|
2020-12-13 12:53:16 +08:00
|
|
|
from .event import *
|
2020-12-31 17:58:09 +08:00
|
|
|
from .permission import *
|
2021-09-18 16:11:03 +08:00
|
|
|
from .bot import Bot as Bot
|
|
|
|
from .utils import log as log
|
|
|
|
from .utils import escape as escape
|
|
|
|
from .message import Message as Message
|
|
|
|
from .utils import unescape as unescape
|
|
|
|
from .exception import ActionFailed as ActionFailed
|
|
|
|
from .exception import NetworkError as NetworkError
|
|
|
|
from .message import MessageSegment as MessageSegment
|
|
|
|
from .exception import ApiNotAvailable as ApiNotAvailable
|
|
|
|
from .exception import CQHTTPAdapterException as CQHTTPAdapterException
|