A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add playlist types

+26
+26
src/Library/Playlists.elm
··· 1 + module Playlists exposing (IdentifiedPlaylistTrack, Identifiers, Playlist, PlaylistTrack) 2 + 3 + -- 🌳 4 + 5 + 6 + type alias Playlist = 7 + { autoGenerated : Bool 8 + , name : String 9 + , tracks : List PlaylistTrack 10 + } 11 + 12 + 13 + type alias PlaylistTrack = 14 + { album : String 15 + , artist : String 16 + , title : String 17 + } 18 + 19 + 20 + type alias IdentifiedPlaylistTrack = 21 + ( Identifiers, PlaylistTrack ) 22 + 23 + 24 + type alias Identifiers = 25 + { index : Int 26 + }