mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Remove unnecessary repositories methods
This commit is contained in:
parent
5e54925520
commit
1d8607ef6a
9 changed files with 23 additions and 64 deletions
|
@ -45,9 +45,7 @@ type AlbumRepository interface {
|
|||
Exists(id string) (bool, error)
|
||||
Put(*Album) error
|
||||
Get(id string) (*Album, error)
|
||||
FindByArtist(albumArtistId string) (Albums, error)
|
||||
GetAll(...QueryOptions) (Albums, error)
|
||||
GetRandom(...QueryOptions) (Albums, error)
|
||||
Search(q string, offset int, size int) (Albums, error)
|
||||
Refresh(ids ...string) error
|
||||
AnnotatedRepository
|
||||
|
|
|
@ -64,11 +64,9 @@ type MediaFileRepository interface {
|
|||
Put(m *MediaFile) error
|
||||
Get(id string) (*MediaFile, error)
|
||||
GetAll(options ...QueryOptions) (MediaFiles, error)
|
||||
FindByAlbum(albumId string) (MediaFiles, error)
|
||||
FindAllByPath(path string) (MediaFiles, error)
|
||||
FindByPath(path string) (*MediaFile, error)
|
||||
FindPathsRecursively(basePath string) ([]string, error)
|
||||
GetRandom(options ...QueryOptions) (MediaFiles, error)
|
||||
Search(q string, offset int, size int) (MediaFiles, error)
|
||||
Delete(id string) error
|
||||
DeleteByPath(path string) (int64, error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue