burn everything to the ground (#11)

🔥🔥🔥🔥🔥
This commit is contained in:
Chance 2024-12-19 20:54:46 -05:00 committed by BitSyndicate
parent 3d87381f55
commit 08f090b6fe
30 changed files with 528 additions and 1088 deletions

View file

@ -0,0 +1,9 @@
use thiserror::Error;
#[derive(Debug,Error)]
enum ZError {
#[error(transparent)]
Unknown(#[from] anyhow::Error)
}