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
//! User-record persistence, split by concern.
//!
//! The `UserRepository` methods are implemented across the submodules here:
//! lookups (`find`), pagination and search (`list`), mutations
//! (`operations`), session tracking (`session`), aggregate counts (`stats`),
//! and account consolidation (`merge`). Re-exports the result and parameter
//! types [`MergeResult`] and [`UpdateUserParams`].
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

mod find;
mod list;
mod merge;
pub(super) mod operations;
mod session;
mod stats;

pub use merge::MergeResult;
pub use operations::UpdateUserParams;