rename packaages

This commit is contained in:
Nazar Kanaev
2021-03-23 15:39:48 +00:00
parent e0009e4267
commit c469749eaa
16 changed files with 23 additions and 23 deletions

20
src/parser/models.go Normal file
View File

@@ -0,0 +1,20 @@
package parser
import "time"
type Feed struct {
Title string
SiteURL string
Items []Item
}
type Item struct {
GUID string
Date time.Time
URL string
Title string
Content string
ImageURL string
PodcastURL string
}