//! Runtime mandate enforcement.
//!
//! This module provides runtime authorization and consumption of mandates
//! for tool calls. It ensures atomic single-use enforcement, nonce replay
//! prevention, and idempotent consumption.
//!
//! ## Architecture (SPEC-Mandate-v1.0.3 §7)
//!
//! ```text
//! ┌─────────────────────────────────────────────────────────────────┐
//! │ MCP Proxy │
//! │ ┌──────────────┐ ┌──────────────┐ ┌──────────────────┐ │
//! │ │ Policy Check │───▶│ Authorizer │───▶│ Forward to Tool │ │
//! │ └──────────────┘ └──────┬───────┘ └────────┬─────────┘ │
//! │ │ │ │
//! │ ┌───────▼───────┐ ┌──────▼──────┐ │
//! │ │ MandateStore │ │ Tool Server │ │
//! │ │ (SQLite) │ └─────────────┘ │
//! │ └───────────────┘ │
//! └─────────────────────────────────────────────────────────────────┘
//! ```
pub use ;
pub use ;
pub use MANDATE_SCHEMA;