use super::logic;
use axum::Json;
#[utoipa::path(get, path = "/agents",
responses((status = 200, body = Vec<String>, description = "Available agent names")))]
pub async fn list_agents() -> Json<Vec<String>> {
Json(logic::build())
}
#[cfg(test)]
#[path = "http_tests.rs"]
mod http_tests;