mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 05:57:35 +03:00
Introduced NowPlayingRepository. Don't do anything for now
This commit is contained in:
parent
b660a70688
commit
4748ce142f
7 changed files with 76 additions and 4 deletions
|
@ -13,13 +13,14 @@ type Scrobbler interface {
|
|||
Register(id string, playDate time.Time, submit bool) (*domain.MediaFile, error)
|
||||
}
|
||||
|
||||
func NewScrobbler(itunes itunesbridge.ItunesControl, mr domain.MediaFileRepository) Scrobbler {
|
||||
return scrobbler{itunes, mr}
|
||||
func NewScrobbler(itunes itunesbridge.ItunesControl, mr domain.MediaFileRepository, npr NowPlayingRepository) Scrobbler {
|
||||
return scrobbler{itunes, mr, npr}
|
||||
}
|
||||
|
||||
type scrobbler struct {
|
||||
itunes itunesbridge.ItunesControl
|
||||
mfRepo domain.MediaFileRepository
|
||||
npRepo NowPlayingRepository
|
||||
}
|
||||
|
||||
func (s scrobbler) Register(id string, playDate time.Time, submit bool) (*domain.MediaFile, error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue