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
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `WebAuthn` passkey ceremonies.
//!
//! Groups the three credential flows: [`authenticate`] (login), [`register`]
//! (first-time enrolment), and [`link`] (adding a passkey to an existing
//! account). Each exposes paired start/finish handlers.

pub mod authenticate;
pub mod link;
pub mod register;

pub use authenticate::{finish_auth, start_auth};
pub use link::{finish_link, start_link};
pub use register::{finish_register, start_register};