Files
g0v0-server/app/router/private/__init__.py
2025-08-26 13:18:11 +08:00

9 lines
197 B
Python

from __future__ import annotations
from . import avatar, cover, oauth, relationship, team, username # noqa: F401
from .router import router as private_router
__all__ = [
"private_router",
]