systemprompt-users 0.21.1

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
9
10
11
//! Background jobs for the users domain.
//!
//! Currently exposes [`CleanupAnonymousUsersJob`], which prunes stale
//! anonymous accounts on a schedule.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod cleanup_anonymous_users;

pub use cleanup_anonymous_users::CleanupAnonymousUsersJob;