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