Skip to main content

torrust_tracker_deployer_lib/infrastructure/templating/backup/template/
mod.rs

1//! Backup template module
2//!
3//! Handles backup configuration template rendering.
4
5pub mod renderer;
6pub mod wrapper;
7
8pub use renderer::{
9    BackupConfigRenderer, BackupConfigRendererError, BackupProjectGenerator,
10    BackupProjectGeneratorError,
11};
12pub use wrapper::{BackupContext, BackupDatabaseConfig, BackupTemplate, BackupTemplateError};