A decentralized music tracking and discovery platform built on AT Protocol 🎵 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
0

Configure Feed

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

rocksky / sdk / erlang / src / rocksky_erl.app.src
642 B 15 lines
1{application, rocksky_erl, 2 [{description, 3 "Official Erlang SDK for Rocksky — a Rustler NIF over the shared Rust core " 4 "(rocksky-sdk): AppView reads, record writes (scrobble fan-out, like, " 5 "follow, shout), and the identity hashes shared across every Rocksky SDK."}, 6 {vsn, "0.5.0"}, 7 {registered, []}, 8 %% crypto/inets/ssl/public_key back the first-load NIF download + checksum 9 %% verify in rocksky_nif. kernel/stdlib are mandatory. 10 {applications, [kernel, stdlib, crypto, inets, ssl, public_key]}, 11 {env, []}, 12 {modules, []}, 13 {licenses, ["MIT"]}, 14 {links, [{"GitHub", "https://github.com/tsirysndr/rocksky"}]} 15 ]}.