use axum::{extract::State, response::IntoResponse, Json}; use ontoref_ontology::api::ApiRouteEntry; use serde_json::json; use std::sync::Arc; use crate::service::AiService; pub async fn api_catalog(State(_state): State>) -> impl IntoResponse { let mut routes: Vec<&'static ApiRouteEntry> = inventory::iter::().collect(); routes.sort_by(|a, b| a.path.cmp(b.path).then(a.method.cmp(b.method))); Json(json!({ "service": "ai-service", "routes": routes })) }