Options to ignore patterns in playlists full path

This commit is contained in:
Deluan
2016-03-09 19:48:43 -05:00
parent a4e9d9da14
commit fc625ac70e
3 changed files with 53 additions and 9 deletions
+4 -3
View File
@@ -1,9 +1,10 @@
package domain
type Playlist struct {
Id string
Name string
Tracks []string
Id string
Name string
FullPath string
Tracks []string
}
type PlaylistRepository interface {