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

Configure Feed

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

at main 8 lines 121 B view raw
1module Tuple.Ext exposing (uncurry) 2 3-- 🔱 4 5 6uncurry : (a -> b -> c) -> ( a, b ) -> c 7uncurry fn ( a, b ) = 8 fn a b