systemprompt-api 0.15.0

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.
Documentation
//! Static and prerendered content serving.
//!
//! Serves prerendered HTML, static assets, homepage, and metadata files from
//! the web dist directory, falling back to the content repository when a page
//! is known but not prerendered. Re-exports the matcher
//! ([`StaticContentMatcher`]), the serving state ([`StaticContentState`]), and
//! the session helpers ([`SessionInfo`], [`ensure_session`]).

pub mod config;
pub mod fallback;
pub mod homepage;
pub mod session;
pub mod static_files;

pub use config::StaticContentMatcher;
pub use fallback::*;
pub use homepage::serve_homepage;
pub use session::{SessionInfo, ensure_session};
pub use static_files::{StaticContentState, serve_static_content};