chore(signalr): move to app/

This commit is contained in:
MingxuanGame
2025-07-27 02:42:14 +00:00
parent b359be3637
commit 0d684a1288
12 changed files with 8 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
from __future__ import annotations
from app.models.spectator_hub import FrameDataBundle, SpectatorState
from .hub import Client, Hub
class SpectatorHub(Hub):
async def BeginPlaySession(
self, client: Client, score_token: int, state: SpectatorState
) -> None: ...
async def SendFrameData(
self, client: Client, frame_data: FrameDataBundle
) -> None: ...