1 2 3 4 5 6 7
use clap::Parser; use join_ai::{cli::Args, run}; fn main() -> anyhow::Result<()> { let args = Args::parse(); run(args) }