# ============================================================================= # 企微IT智能服务台 — 外部系统集成 异常/基类 统一出口 # ============================================================================= # 说明:自动化引擎服务层(app.services.automation.*)统一从本模块导入 # BaseClientError / BaseClient。为避免重复定义,此处直接复用 # app.core.clients.base 的权威实现。 # ============================================================================= from app.core.clients.base import ( # noqa: F401 BaseClient, BaseClientError, ClientAPIError, ClientAuthError, ClientConfigError, ClientConnectionError, ) __all__ = [ "BaseClient", "BaseClientError", "ClientConfigError", "ClientConnectionError", "ClientAuthError", "ClientAPIError", ]