Created
May 13, 2019 17:37
-
-
Save dbridges/e7bbf96cb58f37e6a9371020385e974c 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 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