systemprompt-users 0.44.0

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
12
13
//! Background jobs for the users domain.
//!
//! [`CleanupAnonymousUsersJob`] prunes stale anonymous accounts and
//! [`UserRateLimitPruneJob`] drops elapsed rate-limit windows, both hourly.
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub mod cleanup_anonymous_users;
pub mod user_rate_limit_prune;

pub use cleanup_anonymous_users::CleanupAnonymousUsersJob;
pub use user_rate_limit_prune::UserRateLimitPruneJob;