mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-14 01:33:05 +00:00
8 lines
148 B
Go
8 lines
148 B
Go
package point
|
|
|
|
type Page struct {
|
|
HasNext bool `json:"has_next"`
|
|
Posts []MetaPost `json:"posts"`
|
|
Error string `json:"error"`
|
|
}
|