mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-15 02:03: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"`
|
|
}
|