type Followee struct {
Id int `json:"id"`
Username string `json:"username"`
Name string `json:"name"`
ProfileImage string `json:"profile_image"`
WebsiteUrl string `json:"website_url"`
}
type Follower struct {
Id int `json:"id"`
Username string `json:"username"`
Name string `json:"name"`
ProfileImage string `json:"profile_image"`
WebsiteUrl string `json:"website_url"`
}