use clap::Parser;
use roboat::ClientBuilder;
#[derive(Parser, Debug)]
struct Args {
#[arg(long, short)]
roblosecurity: String,
}
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let args = Args::parse();
let client = ClientBuilder::new()
.roblosecurity(args.roblosecurity)
.build();
let count = client.unread_conversation_count().await?;
println!("Unread message count: {}", count);
Ok(())
}