rss-reader/feed.go
2023-08-11 16:13:46 +08:00

15 lines
361 B
Go

package main
type feed struct {
Title string `json:"title,omitempty"`
Link string `json:"link"`
Custom map[string]string `json:"custom,omitempty"`
Items []item `json:"items,omitempty"`
}
type item struct {
Title string `json:"title"`
Link string `json:"link"`
Description string `json:"description"`
}