package model type Track struct { ID string `json:"id"` Title string `json:"title"` Description string `json:"description"` Lyrics string `json:"lyrics"` PreviewURL string `json:"previewURL" db:"preview_url"` Release *Release `json:"-" db:"-"` }