adi-o3-multipass/server/ws/__init__.py

13 lines
No EOL
205 B
Python

"""
WebSocket module for real-time communication
"""
from .manager import WebSocketManager
# Create global instance
ws_manager = WebSocketManager()
__all__ = [
'WebSocketManager',
'ws_manager'
]