aps-agent/server/importers/__init__.py

14 lines
560 B
Python
Raw Permalink Normal View History

# ============================================================
# 数据导入器包(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",
]