useanyhow::Result;useclap::Parser;usewarren::get_report;#[derive(Parser)]/// Checks the recent price history for a given stock symbol and reports whether it's a good buy.
structArgs{/// Stock or fund symbol
stock: String,
}fnmain()->Result<()>{let args =Args::parse();let report =get_report(&args.stock)?;println!("{report}");Ok(())}