Add initial spotify client implementation

This commit is contained in:
Deluan
2020-10-18 13:23:02 -04:00
committed by Deluan Quintão
parent eb74dad7cd
commit 19ead8f7e8
7 changed files with 977 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package spotify
import (
"testing"
"github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/tests"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestSpotify(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "Spotify Test Suite")
}