Reduce payload size when fetching multiple items

This commit is contained in:
Marcus Noble 2020-11-09 20:11:24 +00:00
parent 9a25332ded
commit 63123aa9a7
1 changed files with 9 additions and 2 deletions

View File

@ -50,8 +50,15 @@ type Item struct {
} }
type ItemWithFeed struct { type ItemWithFeed struct {
Item ID string
Title string
URL string
ImageURL string
Created *time.Time
GUID string
FeedID string
Read bool
Save bool
FeedTitle string FeedTitle string
FeedHomepageURL string FeedHomepageURL string
} }