package main
type Data struct {
Height int `json:"height"`
Width int `json:"width"`
Link string `json:"link"`
Mime string `json:"mime"`
Error string `json:"error"`
Thumbs
}
type Thumbs struct{}
type response struct {
Data `json:"data"`
Success bool `json:"success"`
Status int `json:"status"`
}