reinhardt-conf 0.3.2

Configuration management framework for Reinhardt - Django-inspired settings with encryption and secrets management
Documentation
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;