rename packaages
This commit is contained in:
parent
e0009e4267
commit
c469749eaa
16 changed files with 23 additions and 23 deletions
20
src/parser/models.go
Normal file
20
src/parser/models.go
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue