point-api-go/post_show_response.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"`
}