CommentList all videos have same demo comment list
(c *gin.Context)
| 40 | |
| 41 | // CommentList all videos have same demo comment list |
| 42 | func CommentList(c *gin.Context) { |
| 43 | c.JSON(http.StatusOK, CommentListResponse{ |
| 44 | Response: Response{StatusCode: 0}, |
| 45 | CommentList: DemoComments, |
| 46 | }) |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected