Auto-Import playlists found in the Music Folder

This commit is contained in:
Deluan 2020-07-11 14:38:17 -04:00 committed by Deluan Quintão
parent 35114be5f7
commit b9b6ce066b
9 changed files with 160 additions and 12 deletions

View file

@ -27,6 +27,7 @@ type PlaylistRepository interface {
Put(pls *Playlist) error
Get(id string) (*Playlist, error)
GetAll(options ...QueryOptions) (Playlists, error)
FindByPath(path string) (*Playlist, error)
Delete(id string) error
Tracks(playlistId string) PlaylistTrackRepository
}