FollowList all users have same follow list
(c *gin.Context)
| 23 | |
| 24 | // FollowList all users have same follow list |
| 25 | func FollowList(c *gin.Context) { |
| 26 | c.JSON(http.StatusOK, UserListResponse{ |
| 27 | Response: Response{ |
| 28 | StatusCode: 0, |
| 29 | }, |
| 30 | UserList: []User{DemoUser}, |
| 31 | }) |
| 32 | } |
| 33 | |
| 34 | // FollowerList all users have same follower list |
| 35 | func FollowerList(c *gin.Context) { |
nothing calls this directly
no outgoing calls
no test coverage detected