mirror of
https://github.com/HKUDS/OpenSpace.git
synced 2026-08-28 05:15:00 +00:00
9 lines
290 B
Python
9 lines
290 B
Python
from openspace.communication.adapters.base import BaseChannelAdapter
|
|
from openspace.communication.adapters.feishu import FeishuAdapter
|
|
from openspace.communication.adapters.whatsapp import WhatsAppAdapter
|
|
|
|
__all__ = [
|
|
"BaseChannelAdapter",
|
|
"FeishuAdapter",
|
|
"WhatsAppAdapter",
|
|
]
|