refactor(third_party_api): 重构第三方API模块结构和逻辑 feat(third_party_api): 新增OCR图片识别接口 style(third_party_api): 优化API请求参数和响应模型 build: 添加静态文件目录挂载配置
5 lines
173 B
Python
5 lines
173 B
Python
from fastapi import APIRouter
|
|
from .upload import router as upload_router
|
|
|
|
router = APIRouter()
|
|
router.include_router(upload_router, prefix="/upload", tags=["文件上传"]) |