From ec39579c39f4b903de28554aa97e91892cf66942 Mon Sep 17 00:00:00 2001 From: shanshanzhong Date: Wed, 11 Mar 2026 22:34:03 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B3=A8=E5=86=8C=20/v1/common/client/d?= =?UTF-8?q?ownload=20=E8=B7=AF=E7=94=B1=EF=BC=8C=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E5=AE=A2=E6=88=B7=E7=AB=AF=E4=B8=8B=E8=BD=BD=E9=93=BE=E6=8E=A5?= =?UTF-8?q?=20404?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit handler 和 logic 代码已迁移但 routes.go 漏注册该端点。 Co-Authored-By: claude-flow --- internal/handler/routes.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/handler/routes.go b/internal/handler/routes.go index 348a957..8ea74f1 100644 --- a/internal/handler/routes.go +++ b/internal/handler/routes.go @@ -716,6 +716,9 @@ func RegisterHandlers(router *gin.Engine, serverCtx *svc.ServiceContext) { // Get Client commonGroupRouter.GET("/client", common.GetClientHandler(serverCtx)) + // Get Download Link + commonGroupRouter.GET("/client/download", common.GetDownloadLinkHandler(serverCtx)) + // Heartbeat commonGroupRouter.GET("/heartbeat", common.HeartbeatHandler(serverCtx))