mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-14 09:43:06 +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"`
|
||
|
}
|