mirror of
https://github.com/rommapp/romm.git
synced 2026-02-18 23:42:07 +01:00
13 lines
261 B
Python
13 lines
261 B
Python
import socketio
|
|
|
|
|
|
socket_server = socketio.AsyncServer(
|
|
cors_allowed_origins="*",
|
|
async_mode="asgi",
|
|
logger=False,
|
|
engineio_logger=False,
|
|
client_manager=socketio.AsyncRedisManager("redis://"),
|
|
)
|
|
|
|
socket_app = socketio.ASGIApp(socket_server)
|