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