SQL/Orm ArtistRepository complete

This commit is contained in:
Deluan
2020-01-12 17:32:06 -05:00
committed by Deluan Quintão
parent 334e8384ce
commit d70af2c39d
9 changed files with 346 additions and 16 deletions
+13
View File
@@ -0,0 +1,13 @@
package db_sql
import (
"github.com/cloudsonic/sonic-server/persistence"
"github.com/google/wire"
)
var Set = wire.NewSet(
NewArtistRepository,
persistence.NewNowPlayingRepository,
persistence.NewMediaFolderRepository,
wire.Value(persistence.ProviderIdentifier("sqlite")),
)