navidrome/engine/nowplaying.go
2016-03-17 10:08:47 -04:00

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)
}