Skip to main content

trustformers_debug/guided/
mod.rs

1//! Guided debugging system
2//!
3//! This module provides a step-by-step debugging wizard that guides users through
4//! a comprehensive debugging process. It includes automated step detection,
5//! progress tracking, and structured debugging workflows.
6
7pub mod debugger;
8
9pub use debugger::*;