Files
g0v0-server/app/router/private/__init__.py
2025-08-14 15:22:32 +00:00

9 lines
177 B
Python

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