mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
20 lines
347 B
Go
20 lines
347 B
Go
package scrobbler
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type Scrobble struct {
|
|
Track *model.MediaFile
|
|
TimeStamp *time.Time
|
|
}
|
|
|
|
type Scrobbler interface {
|
|
NowPlaying(context.Context, *model.MediaFile) error
|
|
Scrobble(context.Context, []Scrobble) error
|
|
}
|
|
|
|
type Constructor func(ds model.DataStore) Scrobbler
|