Make QueryOptions optional in PlaylistRepository.GetStarred

This commit is contained in:
Deluan
2020-01-11 21:38:02 -05:00
parent 4643628e28
commit cb107f77f8
3 changed files with 13 additions and 9 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ type PlaylistRepository interface {
BaseRepository
Put(m *Playlist) error
Get(id string) (*Playlist, error)
GetAll(options QueryOptions) (Playlists, error)
GetAll(options ...QueryOptions) (Playlists, error)
PurgeInactive(active Playlists) ([]string, error)
}