mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
18 lines
363 B
Go
18 lines
363 B
Go
package engine
|
|
|
|
import "time"
|
|
|
|
const NowPlayingExpire = time.Duration(30) * time.Minute
|
|
|
|
type NowPlayingInfo struct {
|
|
TrackId string
|
|
Start time.Time
|
|
Username string
|
|
PlayerId int
|
|
PlayerName string
|
|
}
|
|
|
|
type NowPlayingRepository interface {
|
|
Set(trackId, username string, playerId int, playerName string) error
|
|
GetAll() (*[]NowPlayingInfo, error)
|
|
}
|