Add initial last.fm client implementation

This commit is contained in:
Deluan
2020-10-17 23:59:09 -04:00
committed by Deluan Quintão
parent 61d0bd4729
commit eb74dad7cd
7 changed files with 256 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
package lastfm
import (
"testing"
"github.com/deluan/navidrome/log"
"github.com/deluan/navidrome/tests"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
func TestLastFM(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelCritical)
RegisterFailHandler(Fail)
RunSpecs(t, "LastFM Test Suite")
}