Files
g0v0-server/app/router/v1/__init__.py

6 lines
232 B
Python

from . import beatmap, public_user, replay, score, user # noqa: F401
from .public_router import public_router as api_v1_public_router
from .router import router as api_v1_router
__all__ = ["api_v1_public_router", "api_v1_router"]