7 lines
212 B
Rust
7 lines
212 B
Rust
// Removed unused imports Report and ResultExt
|
|
#[derive(Debug, thiserror::Error)]
|
|
#[error("An error occurred")]
|
|
pub struct Error;
|
|
|
|
pub type Result<T, E = error_stack::Report<Error>> = core::result::Result<T, E>;
|