anyhow_tracing/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod error;
4mod macros;
5
6// Re-export the main types and traits
7// The macros are defined in the macros module and exported automatically
8
9// Re-export commonly used anyhow types that don't conflict
10pub use anyhow::Chain;
11pub use error::{Context, Error, Result};