1package gotumblr
2
3import "encoding/json"
4
5type PostsResponse struct {
6	Blog  BlogInfo
7	Posts []json.RawMessage
8	Total_posts int64
9}
10