mirror of
https://bitbucket.org/skobkin/point-api-go.git
synced 2025-03-16 04:53: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"`
|
||
|
}
|