Files
pqAutomationApp/app/export/__init__.py

6 lines
275 B
Python
Raw Normal View History

"""导出模块:测试结果图片与 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"]