Axum-based HTTP server and API gateway for systemprompt.io AI governance infrastructure. Exposes governed agents, MCP, A2A, and admin endpoints with rate limiting and RBAC.
//! `/.well-known/*` endpoints owned by the API: A2A agent cards plus the
//! federated-auth JWKS document.
pubmodagent_cards;pubmodjwks;useaxum::Router;usesystemprompt_runtime::AppContext;pubuseagent_cards::wellknown_router as agent_card_router;pubfnwellknown_router(ctx:&AppContext)-> Router{agent_cards::wellknown_router(ctx).merge(jwks::jwks_router(ctx))}