Fix/Optimized Playlist tracks deletion

This commit is contained in:
Deluan 2021-10-26 14:05:28 -04:00
parent fbd87ba577
commit 5dce499d6d
7 changed files with 57 additions and 25 deletions

View file

@ -111,6 +111,6 @@ type PlaylistTrackRepository interface {
AddAlbums(albumIds []string) (int, error)
AddArtists(artistIds []string) (int, error)
AddDiscs(discs []DiscID) (int, error)
Delete(id string) error
Delete(id ...string) error
Reorder(pos int, newPos int) error
}