14 lines
339 B
Python
14 lines
339 B
Python
from __future__ import annotations
|
|
|
|
from app.config import settings
|
|
|
|
from . import audio_proxy, avatar, beatmapset_ratings, cover, oauth, relationship, team, username # noqa: F401
|
|
from .router import router as private_router
|
|
|
|
if settings.enable_totp_verification:
|
|
from . import totp # noqa: F401
|
|
|
|
__all__ = [
|
|
"private_router",
|
|
]
|