1 2 3 4 5 6 7
//! Audit log backends pub mod file; pub mod memory; pub use file::FileSecretAuditBackend; pub use memory::MemorySecretAuditBackend;