Skip to content

Instantly share code, notes, and snippets.

@dbridges
Created May 13, 2019 17:37
Show Gist options
  • Save dbridges/e7bbf96cb58f37e6a9371020385e974c to your computer and use it in GitHub Desktop.
Save dbridges/e7bbf96cb58f37e6a9371020385e974c to your computer and use it in GitHub Desktop.
type Content struct {
Type string `xml:"type,attr"`
BaseURI string `xml:"base,attr"`
Body string `xml:",innerxml"`
}
type Link struct {
HREF string `xml:"href,attr"`
Rel string `xml:"rel,attr"`
Type string `xml:"type,attr"`
}
type Author struct {
Name string `xml:"name"`
Email string `xml:"email"`
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment