Created
May 13, 2019 17:36
-
-
Save dbridges/ec41b815f233f5407bdafd0458d45579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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