13 lines
No EOL
205 B
Python
Executable file
13 lines
No EOL
205 B
Python
Executable file
"""
|
|
WebSocket module for real-time communication
|
|
"""
|
|
|
|
from .manager import WebSocketManager
|
|
|
|
# Create global instance
|
|
ws_manager = WebSocketManager()
|
|
|
|
__all__ = [
|
|
'WebSocketManager',
|
|
'ws_manager'
|
|
] |