mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
14 lines
234 B
Go
14 lines
234 B
Go
package responses
|
|
|
|
import "encoding/xml"
|
|
|
|
type Index struct {
|
|
XMLName xml.Name `xml:"index"`
|
|
Name string `xml:"name,attr"`
|
|
}
|
|
|
|
type ArtistIndex struct {
|
|
XMLName xml.Name `xml:"indexes"`
|
|
Index []Index `xml:"indexes"`
|
|
}
|
|
|