feat(multiplay): support CreateRoom hub method

This commit is contained in:
MingxuanGame
2025-08-01 11:08:59 +00:00
parent d399cb52e2
commit a25cb852d9
11 changed files with 590 additions and 403 deletions

View File

@@ -6,7 +6,12 @@ from datetime import datetime
from app.config import settings
from app.dependencies.database import create_tables, engine, redis_client
from app.dependencies.fetcher import get_fetcher
from app.router import api_router, auth_router, fetcher_router, signalr_router
from app.router import (
api_router,
auth_router,
fetcher_router,
signalr_router,
)
from fastapi import FastAPI