mirror of
https://github.com/nkanaev/yarr.git
synced 2025-11-07 09:59:38 +00:00
26 lines
312 B
Go
26 lines
312 B
Go
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
|
|
MediaLinks []MediaLink
|
|
}
|
|
|
|
type MediaLink struct {
|
|
URL string
|
|
Type string
|
|
Description string
|
|
}
|