use circles_launcher::cleanup_launcher; #[tokio::main] async fn main() -> Result<(), Box> { println!("Cleaning up all launcher services..."); match cleanup_launcher().await { Ok(_) => println!("Cleanup completed successfully!"), Err(e) => println!("Cleanup failed: {}", e), } Ok(()) }