Don't parse unused fields

This commit is contained in:
Svilen Markov 2024-06-02 17:51:07 +01:00
parent 0a55c12f4f
commit 5105ebb870

View File

@ -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