| 6 | } |
| 7 | |
| 8 | type Video struct { |
| 9 | Id int64 `json:"id,omitempty"` |
| 10 | Author User `json:"author"` |
| 11 | PlayUrl string `json:"play_url" json:"play_url,omitempty"` |
| 12 | CoverUrl string `json:"cover_url,omitempty"` |
| 13 | FavoriteCount int64 `json:"favorite_count,omitempty"` |
| 14 | CommentCount int64 `json:"comment_count,omitempty"` |
| 15 | IsFavorite bool `json:"is_favorite,omitempty"` |
| 16 | } |
| 17 | |
| 18 | type Comment struct { |
| 19 | Id int64 `json:"id,omitempty"` |
nothing calls this directly
no outgoing calls
no test coverage detected