systemprompt-users 0.14.6

User management for systemprompt.io AI governance infrastructure. 6-tier RBAC, sessions, IP bans, and role-scoped access control for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
//! Background jobs for the users domain.
//!
//! Currently exposes [`CleanupAnonymousUsersJob`], which prunes stale
//! anonymous accounts on a schedule.

pub mod cleanup_anonymous_users;

pub use cleanup_anonymous_users::CleanupAnonymousUsersJob;