n0_snafu/
lib.rs

1
2
3
4
5
6
7
8
mod error;
mod spantrace;
pub use tracing_error::ErrorLayer;

pub use self::{
    error::{Error, Result, ResultExt},
    spantrace::SpanTrace,
};