FavoriteList all users have same favorite video list
(c *gin.Context)
| 18 | |
| 19 | // FavoriteList all users have same favorite video list |
| 20 | func FavoriteList(c *gin.Context) { |
| 21 | c.JSON(http.StatusOK, VideoListResponse{ |
| 22 | Response: Response{ |
| 23 | StatusCode: 0, |
| 24 | }, |
| 25 | VideoList: DemoVideos, |
| 26 | }) |
| 27 | } |
nothing calls this directly
no outgoing calls
no test coverage detected