A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
at feat/pgpull 11 lines 166 B view raw
1pub mod handlers; 2pub mod queue; 3pub mod server; 4pub mod types; 5 6use anyhow::Error; 7 8pub async fn run() -> Result<(), Error> { 9 server::run().await?; 10 Ok(()) 11}