FollowerList all users have same follower list
(c *gin.Context)
| 33 | |
| 34 | // FollowerList all users have same follower list |
| 35 | func FollowerList(c *gin.Context) { |
| 36 | c.JSON(http.StatusOK, UserListResponse{ |
| 37 | Response: Response{ |
| 38 | StatusCode: 0, |
| 39 | }, |
| 40 | UserList: []User{DemoUser}, |
| 41 | }) |
| 42 | } |
| 43 | |
| 44 | // FriendList all users have same friend list |
| 45 | func FriendList(c *gin.Context) { |
nothing calls this directly
no outgoing calls
no test coverage detected