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" |
|
|
|
// Author represents a named author and email. |
|
// |
|
// For iTunes compliance, both Name and Email are required. |
|
type Author struct { |
|
XMLName xml.Name `xml:"itunes:owner"` |
|
Name string `xml:"itunes:name"` |
|
Email string `xml:"itunes:email"` |
|
}
|
|
|