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.
12 lines
256 B
12 lines
256 B
5 years ago
|
package podcast
|
||
|
|
||
|
import "encoding/xml"
|
||
|
|
||
5 years ago
|
// AtomLink represents the Atom reference link.
|
||
|
type AtomLink struct {
|
||
5 years ago
|
XMLName xml.Name `xml:"atom:link"`
|
||
|
HREF string `xml:"href,attr"`
|
||
|
Rel string `xml:"rel,attr"`
|
||
|
Type string `xml:"type,attr"`
|
||
|
}
|