use clap::Parser; use roboat::ClientBuilder; #[derive(Parser, Debug)] struct Args { #[arg(long, short)] roblosecurity: String, #[arg(long, short)] target_id: u64, } #[tokio::main] async fn main() -> Result<(), Box> { let args = Args::parse(); let client = ClientBuilder::new() .roblosecurity(args.roblosecurity) .build(); match client.unfriend(args.target_id).await { Ok(_) => { println!("Unfriended!") } Err(err) => { eprintln!("Error while unfriending!"); eprintln!(" {}", err) } } Ok(()) }