A music player that connects to your cloud/distributed storage.
1# Elm code 2 3Elm directories: 4- src/Core 5- src/Library 6 7`UI` is the Elm application that'll be executed on the main thread (ie. the UI thread) and `Brain` is the Elm application that'll live inside a web worker. `UI` will be the main application and `Brain` does the heavy lifting. The code shared between these two applications lives in `Library`. The library also contains the more "generic" code that's not necessarily tied to one or the other. Additionally you have `Themes` which is a layer on top of the UI code. 8 9 10 11## Emoji Comments 12 13``` 14⛩ Gates (Flags & Ports) 15🌳 Types & Initial State 16📣 Updates 17📰 Subscriptions 18🗺 Views 19 20🧠 Brain 21🛠️ Functions 22🖼 Styles 23㊙️ Secret 24```