Files
g0v0-server/app/router/private/__init__.py
2025-08-22 04:21:36 +00: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",
]