1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/hackernews/story.go
Anand Sudhir Prayaga 5c529270eb Add hackernews module
2018-08-03 17:24:55 +02:00

14 lines
352 B
Go

package hackernews
type Story struct {
By string `json:"by"`
Descendants int `json:"descendants"`
ID int `json:"id"`
Kids []int `json:"kids"`
Score int `json:"score"`
Time int `json:"time"`
Title string `json:"title"`
Type string `json:"type"`
URL string `json:"url"`
}