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