mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Remove tracks from playlist
This commit is contained in:
parent
5c95eed517
commit
12cf2f1104
6 changed files with 72 additions and 9 deletions
|
@ -2,8 +2,6 @@ package model
|
|||
|
||||
import (
|
||||
"time"
|
||||
|
||||
"github.com/deluan/rest"
|
||||
)
|
||||
|
||||
type Playlist struct {
|
||||
|
@ -41,7 +39,8 @@ type PlaylistTrack struct {
|
|||
type PlaylistTracks []PlaylistTrack
|
||||
|
||||
type PlaylistTrackRepository interface {
|
||||
rest.Repository
|
||||
ResourceRepository
|
||||
Add(mediaFileIds []string) error
|
||||
Update(mediaFileIds []string) error
|
||||
Delete(id string) error
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue