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 32 lines 520 B view raw
1module Sources.Services.WebDav.Marker exposing (concat, removeOne, takeOne) 2 3{-| Custom `Marker`. 4 5WebDAV doesn't make a recursive list, so we have to manage that ourselves. 6The spec seems to have `Depth: Infinity` which should allow that. 7But a lot of clients don't implement it. 8This basically re-exports `Sources.Services.IPFS.Marker`. 9 10-} 11 12import Sources.Services.Ipfs.Marker as IpfsMarker 13 14 15 16-- IN 17 18 19concat = 20 IpfsMarker.concat 21 22 23 24-- OUT 25 26 27takeOne = 28 IpfsMarker.takeOne 29 30 31removeOne = 32 IpfsMarker.removeOne