type Location struct {
Id int `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
City string `json:"city"`
State string `json:"state"`
Country string `json:"country"`
}
type Set struct {
Id int `json:"id"`
UserId int `json:"user_id"`
ArtistId int `json:"artist_id"`
ArtistName string `json:"artist_name"`
LocationId int `json:"location_id"`
LocationName string `json:"location_name"`
}