mirror of
https://github.com/nkanaev/yarr.git
synced 2025-11-08 02:19:37 +00:00
21 lines
233 B
Go
21 lines
233 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
|
|
ImageURL string
|
|
AudioURL string
|
|
}
|