aps-agent/server/importers/__init__.py

14 lines
560 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ============================================================
# 数据导入器包(moduleId: importers, 可重生 ✅)
# Excel/数据包导入的通用层;客户差异全部收敛到 profiles/*.json。
# ============================================================
from server.importers.excel_importer import (
import_site_excel, load_profile, list_profiles,
)
from server.importers.mom_pack import import_mom_excel, is_mom_workbook
__all__ = [
"import_site_excel", "load_profile", "list_profiles",
"import_mom_excel", "is_mom_workbook",
]