Rename project to Navidrome

This commit is contained in:
Deluan
2020-01-23 19:44:08 -05:00
parent aaefc6bfc7
commit bee55c04c8
93 changed files with 210 additions and 203 deletions
+3 -3
View File
@@ -6,8 +6,8 @@ import (
"runtime"
"testing"
"github.com/cloudsonic/sonic-server/conf"
"github.com/cloudsonic/sonic-server/log"
"github.com/deluan/navidrome/conf"
"github.com/deluan/navidrome/log"
)
func Init(t *testing.T, skipOnShort bool) {
@@ -16,7 +16,7 @@ func Init(t *testing.T, skipOnShort bool) {
}
_, file, _, _ := runtime.Caller(0)
appPath, _ := filepath.Abs(filepath.Join(filepath.Dir(file), ".."))
confPath, _ := filepath.Abs(filepath.Join(appPath, "tests", "sonic-test.toml"))
confPath, _ := filepath.Abs(filepath.Join(appPath, "tests", "navidrome-test.toml"))
os.Chdir(appPath)
conf.LoadFromFile(confPath)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"encoding/xml"
"fmt"
"github.com/cloudsonic/sonic-server/server/subsonic/responses"
"github.com/deluan/navidrome/server/subsonic/responses"
"github.com/smartystreets/goconvey/convey"
)