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

@@ -1,5 +1,7 @@
from __future__ import annotations
from app.signalr import signalr_router as signalr_router
from . import ( # pyright: ignore[reportUnusedImport] # noqa: F401
beatmap,
beatmapset,
@@ -10,6 +12,5 @@ from . import ( # pyright: ignore[reportUnusedImport] # noqa: F401
from .api_router import router as api_router
from .auth import router as auth_router
from .fetcher import fetcher_router as fetcher_router
from .signalr import signalr_router as signalr_router
__all__ = ["api_router", "auth_router", "fetcher_router", "signalr_router"]