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