Files
g0v0-server/app/router/private/__init__.py
2025-08-12 04:54:21 +00:00

9 lines
153 B
Python

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