point-tools-crawler/point/page.go

8 lines
144 B
Go
Raw Normal View History

2016-03-15 22:21:50 +00:00
package point
type Page struct {
HasNext bool `json:"has_next"`
2016-03-15 22:21:50 +00:00
Posts []MetaPost `json:"posts"`
Error string `json:"error"`
2016-03-15 22:21:50 +00:00
}