zenyx-engine/subcrates/zen_core/src/lib.rs

7 lines
125 B
Rust

use thiserror::Error;
#[derive(Debug, Error)]
enum ZError {
#[error(transparent)]
Unknown(#[from] anyhow::Error),
}