kutil_cli/debug/
mod.rs

1mod context;
2mod debuggable;
3mod format;
4mod theme;
5
6/// Utilities.
7pub mod utils;
8
9#[allow(unused_imports)]
10pub use {context::*, debuggable::*, format::*, theme::*};
11
12#[cfg(feature = "derive")]
13#[allow(unused_imports)]
14pub use kutil_cli_macros::Debuggable;