A decentralized music tracking and discovery platform built on AT Protocol 馃幍 rocksky.app
spotify atproto lastfm musicbrainz scrobbling listenbrainz
at feat/pgpull 13 lines 217 B view raw
1use dotenv::dotenv; 2use server::serve; 3 4pub mod handlers; 5pub mod server; 6pub mod types; 7 8#[tokio::main] 9async fn main() -> Result<(), Box<dyn std::error::Error>> { 10 dotenv().ok(); 11 serve().await?; 12 Ok(()) 13}