Removed Playlist.GetWithTracks, not needed anymore

This commit is contained in:
Deluan 2020-04-11 19:05:51 -04:00
parent e232c5c561
commit 9fb4f5ef52
4 changed files with 10 additions and 27 deletions

View file

@ -19,7 +19,6 @@ type PlaylistRepository interface {
Exists(id string) (bool, error)
Put(pls *Playlist) error
Get(id string) (*Playlist, error)
GetWithTracks(id string) (*Playlist, error)
GetAll(options ...QueryOptions) (Playlists, error)
Delete(id string) error
}