1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Audit backends //! //! This module provides different storage backends for audit logs. mod file; mod memory; #[cfg(feature = "dynamic-database")] mod database; pub use file::FileAuditBackend; pub use memory::MemoryAuditBackend; #[cfg(feature = "dynamic-database")] pub use database::DatabaseAuditBackend;