Implements NowPlayingRepository as an in-memory only struct

This commit is contained in:
Deluan
2020-01-10 21:45:17 -05:00
committed by Deluan Quintão
parent c9be5f7201
commit cead8906d6
10 changed files with 156 additions and 7 deletions
+1 -1
View File
@@ -29,6 +29,6 @@ type NowPlayingRepository interface {
// Size of the queue for the playerId
Count(playerId int) (int64, error)
// Returns all tails from all playerIds
// Returns all heads from all playerIds
GetAll() ([]*NowPlayingInfo, error)
}