mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
20 lines
389 B
Go
20 lines
389 B
Go
package scrobbler
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type Scrobble struct {
|
|
model.MediaFile
|
|
TimeStamp time.Time
|
|
}
|
|
|
|
type Scrobbler interface {
|
|
NowPlaying(ctx context.Context, userId string, track *model.MediaFile) error
|
|
Scrobble(ctx context.Context, userId string, scrobbles []Scrobble) error
|
|
}
|
|
|
|
type Constructor func(ds model.DataStore) Scrobbler
|