nu_protocol/debugger/
mod.rs

1//! Module containing the trait to instrument the engine for debugging and profiling
2pub mod debugger_trait;
3pub mod profiler;
4
5pub use debugger_trait::*;
6pub use profiler::*;