进一步优化save_result(提取函数)

This commit is contained in:
xinzhu.yin
2026-04-21 09:05:24 +08:00
parent a2bfd6d123
commit 982210a724
4 changed files with 571 additions and 551 deletions

5
app/export/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""导出模块:测试结果图片与 Excel 报告。"""
from app.export.image_exporter import save_result_images
from app.export.excel_exporter import export_excel_report, EXCEL_EXPORT_CONFIG
__all__ = ["save_result_images", "export_excel_report", "EXCEL_EXPORT_CONFIG"]