1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
2019-09-26 22:58:43 +01:00

21 lines
371 B
Go

package subreddit
type Link struct {
Score int `json:"ups"`
Title string `json:"title"`
ItemURL string `json:"url"`
Permalink string `json:"permalink"`
}
type RedditDocument struct {
Data Subreddit `json:"data"`
}
type RedditLinkDocument struct {
Data Link `json:"data"`
}
type Subreddit struct {
Children []RedditLinkDocument `json:"Children"`
}