Implement new Artist refresh

This commit is contained in:
Deluan
2022-12-21 11:30:19 -05:00
committed by Deluan Quintão
parent bce7b163ba
commit 8e640bb858
9 changed files with 170 additions and 167 deletions
-1
View File
@@ -49,7 +49,6 @@ type ArtistRepository interface {
Get(id string) (*Artist, error)
GetAll(options ...QueryOptions) (Artists, error)
Search(q string, offset int, size int) (Artists, error)
Refresh(ids ...string) error
GetIndex() (ArtistIndexes, error)
AnnotatedRepository
}