1 2 3 4 5 6 7 8 9
use std::path::PathBuf; pub struct AgentArgs { pub config: PathBuf, } pub fn run(args: AgentArgs) { println!("Starting agent with config: {:?}", args.config); }