auth_framework/storage/
mod.rs1pub mod core;
2pub mod dashmap_memory; pub mod encryption; pub mod memory;
5#[cfg(feature = "mysql-storage")]
6pub mod mysql;
7#[cfg(feature = "postgres-storage")]
8pub mod postgres;
9#[cfg(feature = "redis")]
10pub mod redis;
11
12#[cfg(feature = "performance-optimization")]
14pub mod unified;
15
16pub use core::*;
18pub use encryption::{EncryptedStorage, StorageEncryption};
19
20#[cfg(feature = "performance-optimization")]
22pub use unified::{StorageStats, UnifiedStorage, UnifiedStorageConfig};
23
24pub use crate::storage::core::AuthStorage;
26
27