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

12 lines
129 B
Rust
Raw Normal View History

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