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))