(name: &str)
| 169 | } |
| 170 | |
| 171 | fn get_agent(name: &str) -> Option<AgentInfo> { |
| 172 | let agents = get_available_agents(); |
| 173 | agents.into_iter().find(|a| a.name == name) |
| 174 | } |
| 175 | |
| 176 | fn get_available_agents() -> Vec<AgentInfo> { |
| 177 | vec![ |
no test coverage detected