optimize the list of comments

This commit is contained in:
landaiqing
2024-09-25 11:46:49 +08:00
parent bb2f49fe74
commit 97175c3d67
9 changed files with 333 additions and 99 deletions

View File

@@ -13,4 +13,6 @@ func CommentRouter(router *gin.RouterGroup) {
router.POST("/auth/comment/list", commonApi.CommentList)
router.POST("/auth/reply/list", commonApi.ReplyList)
router.POST("/auth/reply/reply/submit", commonApi.ReplyReplySubmit)
router.POST("/auth/comment/like", commonApi.CommentLikes)
router.POST("/auth/comment/cancel_like", commonApi.CancelCommentLikes)
}