gesha_core/
lib.rs

1mod error;
2pub use crate::error::{DiffStyle, Error, ErrorTheme, Output, Result};
3
4pub mod conversions;
5pub mod io;
6pub mod trace;
7
8#[cfg(feature = "testing")]
9pub mod testing;