burn everything to the ground (#11)

🔥🔥🔥🔥🔥
This commit is contained in:
Chance 2024-12-19 20:54:46 -05:00 committed by GitHub
parent 3aba3aea1c
commit 470b934fb8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 528 additions and 1088 deletions

View file

@ -0,0 +1,8 @@
[package]
name = "zen_core"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.94"
thiserror = "2.0.8"

View file

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