type Item struct {
Name string `json:"name"`
Src string `json:"src"`
Time time.Time `json:"time"`
Title string `json:"title"`
Content string `json:"content"`
Link string `json:"link"`
ID string `json:"id"`
}
Item represents a single RSS/Atom item with associated feed metadata.