| 23 | } |
| 24 | |
| 25 | type User struct { |
| 26 | Id int64 `json:"id,omitempty"` |
| 27 | Name string `json:"name,omitempty"` |
| 28 | FollowCount int64 `json:"follow_count,omitempty"` |
| 29 | FollowerCount int64 `json:"follower_count,omitempty"` |
| 30 | IsFollow bool `json:"is_follow,omitempty"` |
| 31 | } |
| 32 | |
| 33 | type Message struct { |
| 34 | Id int64 `json:"id,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected