Make QueryOptions optional in PlaylistRepository.GetStarred
This commit is contained in:
+1
-1
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user