FriendList all users have same friend list
(c *gin.Context)
| 43 | |
| 44 | // FriendList all users have same friend list |
| 45 | func FriendList(c *gin.Context) { |
| 46 | c.JSON(http.StatusOK, UserListResponse{ |
| 47 | Response: Response{ |
| 48 | StatusCode: 0, |
| 49 | }, |
| 50 | UserList: []User{DemoUser}, |
| 51 | }) |
| 52 | } |
nothing calls this directly
no outgoing calls
no test coverage detected