Files
podcast-api/subsonic/response.go
2026-03-05 13:22:00 +03:00

12 lines
230 B
Go

package subsonic
import (
"encoding/xml"
)
type Response struct {
XMLName xml.Name `xml:"subsonic-response" json:"-"`
Status string `xml:"status,attr" json:"status"`
Version string `xml:"version,attr" json:"version"`
}