mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 05:27:37 +03:00
14 lines
223 B
Go
14 lines
223 B
Go
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
|
|
}
|