1use anyhow::Error; 2 3pub async fn start_spotify_service() -> Result<(), Error> { 4 rocksky_spotify::run().await?; 5 Ok(()) 6}