Move artwork id encoding to public package

This commit is contained in:
Deluan
2023-01-16 15:24:25 -05:00
parent 13ba08157a
commit e40da183bb
7 changed files with 97 additions and 62 deletions
+17
View File
@@ -0,0 +1,17 @@
package public
import (
"testing"
"github.com/navidrome/navidrome/log"
"github.com/navidrome/navidrome/tests"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
func TestPublicEndpoints(t *testing.T) {
tests.Init(t, false)
log.SetLevel(log.LevelFatal)
RegisterFailHandler(Fail)
RunSpecs(t, "Public Endpoints Suite")
}