newfetch/newsource/people.go

16 lines
302 B
Go
Raw Permalink Normal View History

2022-07-25 14:38:30 +00:00
package newsource
type PeopleResponse struct {
Data struct {
Records []PeopleRecord
}
}
type PeopleRecord struct {
Title string `json:"title"`
Url string `json:"url"`
OriginName string `json:"originName"`
Content string `json:"content"`
InputTime int `json:"inputTime"`
}