Add initial support for OpenSubsonic. (#2302)

This commit is contained in:
Deluan Quintão
2023-04-08 13:25:37 -04:00
committed by GitHub
parent 2e01063429
commit 9154e44eb4
87 changed files with 117 additions and 85 deletions
+7 -1
View File
@@ -19,7 +19,13 @@ import (
var _ = Describe("Responses", func() {
var response *Subsonic
BeforeEach(func() {
response = &Subsonic{Status: "ok", Version: "1.8.0", Type: consts.AppName, ServerVersion: "v0.0.0"}
response = &Subsonic{
Status: "ok",
Version: "1.8.0",
Type: consts.AppName,
ServerVersion: "v0.0.0",
OpenSubsonic: true,
}
})
Describe("EmptyResponse", func() {