-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
from .aiocqhttp.aiocqhttp_platform_adapter import AiocqhttpAdapter | ||
from .qqofficial.qqofficial_platform_adapter import QQOfficialPlatformAdapter | ||
from .qqofficial_webhook.qo_webhook_adapter import QQOfficialWebhookPlatformAdapter | ||
from .gewechat.gewechat_platform_adapter import GewechatPlatformAdapter | ||
from .telegram.tg_adapter import TelegramPlatformAdapter | ||
from .webchat.webchat_adapter import WebChatAdapter | ||
from .wecom.wecom_adapter import WecomPlatformAdapter | ||
from .lark.lark_adapter import LarkPlatformAdapter | ||
|
||
__all__ = [ | ||
"AiocqhttpAdapter", | ||
"QQOfficialPlatformAdapter", | ||
"QQOfficialWebhookPlatformAdapter", | ||
"GewechatPlatformAdapter", | ||
"TelegramPlatformAdapter", | ||
"WebChatAdapter", | ||
"WecomPlatformAdapter", | ||
"LarkPlatformAdapter", | ||
] |