Spaces:
Running
Running
Update websocket_manager.py
Browse files- websocket_manager.py +2 -0
websocket_manager.py
CHANGED
@@ -3,6 +3,8 @@ WebSocket Manager for Flare
|
|
3 |
===========================
|
4 |
Manages WebSocket connections and message routing
|
5 |
"""
|
|
|
|
|
6 |
import asyncio
|
7 |
from typing import Dict, Optional, Set
|
8 |
from fastapi import WebSocket, WebSocketDisconnect
|
|
|
3 |
===========================
|
4 |
Manages WebSocket connections and message routing
|
5 |
"""
|
6 |
+
import base64
|
7 |
+
import struct
|
8 |
import asyncio
|
9 |
from typing import Dict, Optional, Set
|
10 |
from fastapi import WebSocket, WebSocketDisconnect
|