mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2025-02-09 15:34:59 +00:00
9 lines
238 B
Go
9 lines
238 B
Go
package point
|
|
|
|
// PostShowResponse represents /api/post response including post data and comments
|
|
type PostShowResponse struct {
|
|
Post Post `json:"post"`
|
|
Comments []Comment `json:"comments"`
|
|
Error string `json:"error"`
|
|
}
|