MCPcopy Create free account
hub / github.com/RaymondCode/simple-demo / Video

Struct Video

controller/common.go:8–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6}
7
8type 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
18type Comment struct {
19 Id int64 `json:"id,omitempty"`

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected