feat(v1-api): support api v1

This commit is contained in:
MingxuanGame
2025-08-14 09:11:53 +00:00
parent c98ea9c723
commit a8906b8194
15 changed files with 802 additions and 18 deletions

View File

@@ -0,0 +1,6 @@
from __future__ import annotations
from . import beatmap, replay, score, user # noqa: F401
from .router import router as api_v1_router
__all__ = ["api_v1_router"]