Files
AstrBot/util/plugin_dev/api/v1/platform.py
Soulter f8aef78d25 feat: 重构配置格式
perf: 优化配置处理过程和呈现方式
2024-08-06 04:58:29 -04:00

12 lines
379 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
'''
消息平台。
Platform类是消息平台的抽象类定义了消息平台的基本接口。
消息平台的具体实现类需要继承Platform类并实现其中的抽象方法。
'''
from model.platform import Platform
from model.platform.qq_nakuru import QQNakuru
from model.platform.qq_official import QQOfficial
from model.platform.qq_aiocqhttp import AIOCQHTTP