10 lines
201 B
Go
10 lines
201 B
Go
package main
|
|
|
|
type NFO struct {
|
|
XMLName struct{} `xml:"episodedetails"`
|
|
Title string `xml:"title"`
|
|
Year int `xml:"year"`
|
|
Aired string `xml:"aired"`
|
|
Plot string `xml:"plot"`
|
|
}
|