Skip to content

Instantly share code, notes, and snippets.

@dbridges
Created May 13, 2019 17:39
Show Gist options
  • Save dbridges/d9bfa478535460f9ef8c52799662d077 to your computer and use it in GitHub Desktop.
Save dbridges/d9bfa478535460f9ef8c52799662d077 to your computer and use it in GitHub Desktop.
func parseFeed(body []byte) (*Feed, error) {
feed := Feed{}
err := xml.Unmarshal(body, &feed)
if err != nil {
return nil, err
}
return &feed, nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment