systemprompt-api 0.14.3

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
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Trackable-link routes for content campaigns.
//!
//! Re-exports the redirect, generation, and analytics handlers along with their
//! request/response types.

mod handlers;
mod types;

pub use handlers::{
    generate_link_handler, get_campaign_performance_handler, get_content_journey_handler,
    get_link_clicks_handler, get_link_performance_handler, list_links_handler, redirect_handler,
};
pub use types::{AnalyticsQuery, GenerateLinkRequest, GenerateLinkResponse, ListLinksQuery};