OpenSpace/openspace/communication/adapters/__init__.py
2026-07-17 11:43:42 +08:00

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",
]