| 4387 | |
| 4388 | #[derive(Debug, Serialize)] |
| 4389 | struct AgentInfo { |
| 4390 | id: String, |
| 4391 | name: String, |
| 4392 | description: Option<String>, |
| 4393 | } |
| 4394 | |
| 4395 | async fn list_agents() -> Result<Json<Vec<AgentInfo>>> { |
| 4396 | let mut config = std::env::current_dir() |
nothing calls this directly
no outgoing calls
no test coverage detected