Make QueryOptions optional in AlbumRepository.GetStarred

This commit is contained in:
Deluan
2020-01-11 21:30:24 -05:00
parent d4ed6a0569
commit b85898df93
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -34,5 +34,5 @@ type AlbumRepository interface {
GetAll(...QueryOptions) (Albums, error)
PurgeInactive(active Albums) ([]string, error)
GetAllIds() ([]string, error)
GetStarred(QueryOptions) (Albums, error)
GetStarred(...QueryOptions) (Albums, error)
}