Files
g0v0-server/app/router/private/__init__.py
2025-10-04 04:57:24 +00:00

12 lines
305 B
Python

from app.config import settings
from . import admin, audio_proxy, avatar, beatmapset, cover, oauth, relationship, score, team, user # noqa: F401
from .router import router as private_router
if settings.enable_totp_verification:
from . import totp # noqa: F401
__all__ = [
"private_router",
]