aps-agent/server/importers/__init__.py

10 lines
438 B
Python
Raw Normal View History

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