A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/spotify 12 lines 195 B view raw
1use anyhow::Error; 2use dotenv::dotenv; 3use rocksky_webscrobbler::start_server; 4 5#[tokio::main] 6async fn main() -> Result<(), Error> { 7 dotenv().ok(); 8 9 start_server().await?; 10 11 Ok(()) 12}