A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at fix/spotify 6 lines 128 B view raw
1use anyhow::Error; 2 3pub async fn start_spotify_service() -> Result<(), Error> { 4 rocksky_spotify::run().await?; 5 Ok(()) 6}