OpenSpace/openspace/communication/adapters/__init__.py

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