diff --git a/pkg/model/feed.go b/pkg/model/feed.go index ac68af3..fb6cc40 100644 --- a/pkg/model/feed.go +++ b/pkg/model/feed.go @@ -21,21 +21,6 @@ const ( FormatCustom = Format("custom") ) -// Format to convert episode when downloading episodes -type Enclosure struct { - // ID of episode - ID string `json:"id"` - Title string `json:"title"` - Description string `json:"description"` - Thumbnail string `json:"thumbnail"` - Duration int64 `json:"duration"` - VideoURL string `json:"video_url"` - PubDate time.Time `json:"pub_date"` - Size int64 `json:"size"` - Order string `json:"order"` - Status EpisodeStatus `json:"status"` // Disk status -} - // Playlist sorting style type Sorting string