Browse Source

Don't parse unused fields

Svilen Markov 1 year ago
parent
commit
5105ebb870
1 changed files with 7 additions and 14 deletions
  1. 7 14
      internal/feed/lobsters.go

+ 7 - 14
internal/feed/lobsters.go

@@ -7,20 +7,13 @@ import (
 )
 
 type lobstersPostResponseJson struct {
-	ShortID          string   `json:"short_id"`
-	ShortIDURL       string   `json:"short_id_url"`
-	CreatedAt        string   `json:"created_at"`
-	Title            string   `json:"title"`
-	URL              string   `json:"url"`
-	Score            int      `json:"score"`
-	Flags            int      `json:"flags"`
-	CommentCount     int      `json:"comment_count"`
-	Description      string   `json:"description"`
-	DescriptionPlain string   `json:"description_plain"`
-	CommentsURL      string   `json:"comments_url"`
-	SubmitterUser    string   `json:"submitter_user"`
-	UserIsAuthor     bool     `json:"user_is_author"`
-	Tags             []string `json:"tags"`
+	CreatedAt    string   `json:"created_at"`
+	Title        string   `json:"title"`
+	URL          string   `json:"url"`
+	Score        int      `json:"score"`
+	CommentCount int      `json:"comment_count"`
+	CommentsURL  string   `json:"comments_url"`
+	Tags         []string `json:"tags"`
 }
 
 type lobstersFeedResponseJson []lobstersPostResponseJson