diff --git a/point/post.go b/point/post.go index 28922ad..6328363 100644 --- a/point/post.go +++ b/point/post.go @@ -1,12 +1,12 @@ 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"` + Id string `json:"id"` + Author User `json:"author"` + Tags []string `json:"tags"` + Text string `json:"text"` + CommentsCount int `json:"comments_count"` + Created string `json:"created"` + Pinned bool `json:"pinned"` + Private bool `json:"private"` }