Another big refactor: Back to a single folder for persistence implementation

This commit is contained in:
Deluan
2020-01-14 18:23:29 -05:00
parent 08e096c569
commit a99c3a8af3
27 changed files with 177 additions and 171 deletions
+17
View File
@@ -0,0 +1,17 @@
package persistence
import (
"github.com/google/wire"
)
var Set = wire.NewSet(
NewArtistRepository,
NewMediaFileRepository,
NewAlbumRepository,
NewArtistIndexRepository,
NewCheckSumRepository,
NewPropertyRepository,
NewPlaylistRepository,
NewNowPlayingRepository,
NewMediaFolderRepository,
)