13 lines
350 B
Rust
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(())
|
|
} |