Files
LoveACE-EndF/loveace/router/endpoint/profile/__init__.py
Sibuxiangx bbc86b8330 ⚒️ 重大重构 LoveACE V2
引入了 mongodb
对数据库进行了一定程度的数据加密
性能改善
代码简化
统一错误模型和响应
使用 apifox 作为文档
2025-11-20 20:44:25 +08:00

14 lines
461 B
Python

from fastapi import APIRouter
from loveace.router.endpoint.profile.flutter import profile_flutter_router
from loveace.router.endpoint.profile.model.error import ProfileErrorToCode
from loveace.router.endpoint.profile.user import profile_user_router
profile_router = APIRouter(
prefix="/profile",
responses=ProfileErrorToCode.gen_code_table(),
)
profile_router.include_router(profile_user_router)
profile_router.include_router(profile_flutter_router)