feat: 添加了根据关注的feed流

This commit is contained in:
Leon
2025-12-19 19:20:52 +08:00
parent d2f40acf4d
commit 8ee2025951
5 changed files with 96 additions and 0 deletions

View File

@@ -38,3 +38,13 @@ type ListLikesCountResponse struct {
NextLikesCountBefore int64 `json:"next_likes_count_before"`
HasMore bool `json:"has_more"`
}
type ListByFollowingRequest struct {
Limit int `json:"limit"`
}
type ListByFollowingResponse struct {
VideoList []FeedVideoItem `json:"video_list"`
NextTime int64 `json:"next_time"`
HasMore bool `json:"has_more"`
}