From 7d44946e3cdcf069a3188ca9c3a2ffe1f9b19dda Mon Sep 17 00:00:00 2001 From: Dawid H <5307341+Harnas@users.noreply.github.com> Date: Fri, 4 Nov 2022 21:42:10 +0100 Subject: [PATCH] chore: remove dead code added by mistake --- pkg/model/feed.go | 15 --------------- 1 file changed, 15 deletions(-) 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