//! In-Memory Store Implementations
//!
//! This module contains in-memory implementations of all store traits.
//! These implementations are primarily used for testing and development.
//!
//! # Architecture
//!
//! Store implementations are organized by service:
//! - `InMemoryWamiStore` - Multi-cloud IAM (identity + credentials + policies)
//! - `InMemoryStsStore` - Security Token Service (sessions + identities)
//! - `InMemorySsoAdminStore` - SSO Administration (permission sets, assignments, etc.)
//! - `InMemoryTenantStore` - Tenant management
//! - `InMemoryStore` - Combines all stores into a single unified interface
// Sub-directories for sub-trait implementations
// Store implementations
pub use InMemorySsoAdminStore;
pub use InMemoryStsStore;
pub use InMemoryTenantStore;
pub use InMemoryStore;
pub use InMemoryWamiStore;