Removed engine.Scrobbler

This commit is contained in:
Deluan
2020-08-13 23:08:15 -04:00
committed by Deluan Quintão
parent eacfc41665
commit 419884db7c
7 changed files with 64 additions and 87 deletions
+3 -1
View File
@@ -3,6 +3,7 @@
package subsonic
import (
"github.com/deluan/navidrome/server/subsonic/engine"
"github.com/google/wire"
)
@@ -17,7 +18,8 @@ var allProviders = wire.NewSet(
NewMediaRetrievalController,
NewStreamController,
NewBookmarksController,
wire.FieldsOf(new(*Router), "Artwork", "ListGenerator", "Playlists", "Scrobbler", "Streamer", "Archiver", "DataStore"),
engine.NewNowPlayingRepository,
wire.FieldsOf(new(*Router), "Artwork", "ListGenerator", "Playlists", "Streamer", "Archiver", "DataStore"),
)
func initSystemController(router *Router) *SystemController {