更新heicode

This commit is contained in:
2026-05-05 14:13:59 +08:00
parent 3692b165a0
commit d0b79030f1
52 changed files with 4959 additions and 498 deletions
@@ -13,6 +13,7 @@ from . import (
billing_webhook, # LiteLLM Token计费webhook
external_tools, # 外部数据工具管理
paypal, # PayPal 支付集成
resources, resource_grants, # Heicode P1:资源绑定与授权
)
@@ -49,5 +50,8 @@ def register_routes(app: FastAPI) -> None:
# PayPal 支付路由
paypal.router, # PayPal 用户支付路由(需要认证)
paypal.webhook_router, # PayPal Webhook 回调路由(无需认证,在 whitelist 路径下)
# Heicode P1: 资源绑定与授权
resources.router,
resource_grants.router,
):
app.include_router(router)