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.
//! HTTP server request/response models for the API entry point.
//!//! Holds the bind-address configuration ([`ServerConfig`]) consumed when
//! standing up the axum listener.
#[derive(Debug, Clone)]pubstructServerConfig{pubhost: String,
pubport:u16,
}implDefault forServerConfig{fndefault()->Self{Self{
host:"0.0.0.0".to_owned(),
port:8080,}}}