yarr/src/feed/models.go
2021-04-02 22:26:44 +01:00

20 lines
229 B
Go

package feed
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
}