circles/research/launcher/examples/cleanup_example.rs
2025-07-08 22:49:47 +02:00

13 lines
350 B
Rust

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