Skip to content

Instantly share code, notes, and snippets.

@dbridges
Created May 13, 2019 17:36
Show Gist options
  • Save dbridges/ec41b815f233f5407bdafd0458d45579 to your computer and use it in GitHub Desktop.
Save dbridges/ec41b815f233f5407bdafd0458d45579 to your computer and use it in GitHub Desktop.
type Feed struct {
ID string `xml:"id"`
Title string `xml:"title"`
Links []Link `xml:"link"`
Entries []Entry `xml:"entry"`
Updated atomTime `xml:"updated"`
}
type Entry struct {
ID string `xml:"id"`
Title string `xml:"title"`
Links []Link `xml:"link"`
Summary string `xml:"summary"`
Content Content `xml:"content"`
Updated atomTime `xml:"updated"`
Author Author `xml:"author"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment