You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package podcast |
|
|
|
import "encoding/xml" |
|
|
|
// AtomLink represents the Atom reference link. |
|
type AtomLink struct { |
|
XMLName xml.Name `xml:"atom:link"` |
|
HREF string `xml:"href,attr"` |
|
Rel string `xml:"rel,attr"` |
|
Type string `xml:"type,attr"` |
|
}
|
|
|