mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +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
14
engine/nowplaying.go
Normal file
14
engine/nowplaying.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package engine
|
||||
|
||||
import "time"
|
||||
|
||||
const NowPlayingExpire = time.Duration(30) * time.Minute
|
||||
|
||||
type NowPlayingInfo struct {
|
||||
TrackId string
|
||||
Start time.Time
|
||||
}
|
||||
|
||||
type NowPlayingRepository interface {
|
||||
Add(trackId string) error
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue