All checks were successful
continuous-integration/drone/push Build is passing
- 扩展 ToolConfig 配置类型,新增 external_api 类型
- 实现接口注册表,包含 90+ 睿美云开放接口定义
- 实现 TPOS SHA256WithRSA 签名鉴权
- 实现睿美云 API 客户端,支持多租户配置
- 新增代理路由 /api/ruimeiyun/call/{api_name}
- 支持接口权限控制和健康检查
11 lines
282 B
Python
11 lines
282 B
Python
"""
|
|
睿美云对接服务
|
|
|
|
提供睿美云开放接口的代理调用能力,支持多租户配置。
|
|
"""
|
|
|
|
from .client import RuimeiyunClient
|
|
from .registry import RUIMEIYUN_APIS, get_api_definition
|
|
|
|
__all__ = ["RuimeiyunClient", "RUIMEIYUN_APIS", "get_api_definition"]
|