更新计费与资源管理API

This commit is contained in:
Ubuntu
2025-12-26 07:49:38 +00:00
parent ca824333c1
commit 0d4c57c6b0
16 changed files with 4392 additions and 2040 deletions
+2 -1
View File
@@ -4,7 +4,7 @@ from fastapi import FastAPI
from . import (
agents, frontend_integration, health, metrics, monitoring, tools, websocket,
auth, user, channel, admin, providers
auth, user, channel, admin, providers, billing_admin
)
@@ -16,6 +16,7 @@ def register_routes(app: FastAPI) -> None:
channel.router,
admin.router,
providers.router,
billing_admin.router, # 计费与资源管理路由
frontend_integration.router,
agents.router,
tools.router,