torrust-tracker-deployer 0.1.0

Torrust Tracker Deployer - Deployment Infrastructure with Ansible and OpenTofu
Documentation
//! Trace file generation infrastructure
//!
//! This module provides a scalable architecture for generating trace files
//! with command-specific writers and shared infrastructure.
//!
//! ## Module Structure
//!
//! - `writer` - Trace writing infrastructure
//!   - `sections` - Formatting utilities for trace sections
//!   - `error` - Error types for trace writing operations
//!   - `common` - Shared file I/O operations
//!   - `commands` - Command-specific trace writers (provision, configure, release, run)

pub mod writer;

pub use writer::{
    ConfigureTraceWriter, ProvisionTraceWriter, ReleaseTraceWriter, RunTraceWriter,
    TraceWriterError,
};