Refactored responses, implemented getLicense
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package responses
|
||||
|
||||
type valid struct {
|
||||
Valid bool `xml:"valid,attr"`
|
||||
}
|
||||
|
||||
type license struct {
|
||||
Subsonic
|
||||
Body valid `xml:"license"`
|
||||
}
|
||||
|
||||
func NewGetLicense(valid bool) *license {
|
||||
response := new(license)
|
||||
response.Subsonic = NewSubsonic()
|
||||
response.Body.Valid = valid
|
||||
return response
|
||||
}
|
||||
Reference in New Issue
Block a user