1 2 3 4 5 6 7
use clap::Parser; use rho_coding_agent::{run, Cli}; #[tokio::main] async fn main() -> anyhow::Result<()> { run(Cli::parse()).await }