mirror of
https://bitbucket.org/skobkin/point-tools-crawler.git
synced 2024-11-11 00:03:05 +00:00
13 lines
374 B
Go
13 lines
374 B
Go
package point
|
|
|
|
type Post struct {
|
|
Id string `json:"id"`
|
|
Author User `json:"author"`
|
|
Tags [10]string `json:"tags"`
|
|
Text string `json:"text"`
|
|
CommentsCount int `json:"comments_count"`
|
|
Created string `json:"created"`
|
|
Pinned bool `json:"pinned"`
|
|
Private bool `json:"private"`
|
|
}
|