polish repl ()

* add less daunting panic message on release builds
This commit is contained in:
Chance 2024-12-21 14:35:55 -05:00 committed by GitHub
parent a1d8b65397
commit dba07c4adf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 405 additions and 106 deletions
subcrates/zen_core/src

View file

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