增加TODO

This commit is contained in:
白茶清欢 2021-11-12 11:27:43 +08:00
parent 6287bc062f
commit cf07d30ca7

View File

@ -32,6 +32,7 @@ func RegisterGitHookRouter(router *gin.Engine, handler IGitHookEventHandler) err
ctx.JSON(http.StatusBadRequest, gin.H{"code": -1, "message": err.Error()}) ctx.JSON(http.StatusBadRequest, gin.H{"code": -1, "message": err.Error()})
} }
handler(ctx, &hookData) handler(ctx, &hookData)
// TODO : 响应数据
}) })
return nil return nil
} }