mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-14 19:20:37 +03:00
9 lines
137 B
Go
9 lines
137 B
Go
package responses
|
|
|
|
import "encoding/xml"
|
|
|
|
type License struct {
|
|
XMLName xml.Name `xml:"license"`
|
|
Valid bool `xml:"valid,attr"`
|
|
}
|