Implement Album search with SQL

This commit is contained in:
Deluan
2020-01-13 15:41:14 -05:00
committed by Deluan Quintão
parent c2448d3880
commit 3a9559a860
4 changed files with 33 additions and 16 deletions
+4
View File
@@ -71,4 +71,8 @@ func (r *albumRepository) GetStarred(options ...domain.QueryOptions) (domain.Alb
return as, err
}
func (r *albumRepository) Search(q string, offset int, size int) (domain.Albums, error) {
return nil, errors.New("not implemented")
}
var _ domain.AlbumRepository = (*albumRepository)(nil)