deep-risk/backend/app/api/v1/__init__.py
2025-12-14 20:08:27 +08:00

13 lines
203 B
Python

"""
API路由模块
"""
from .api import api_router
from .auth import router as auth_router
from .user import router as user_router
__all__ = [
"api_router",
"auth_router",
"user_router",
]