polish repl (#17)

* add less daunting panic message on release builds
This commit is contained in:
Chance 2024-12-21 14:35:55 -05:00 committed by BitSyndicate
parent 40769ec693
commit c57e5c2d49
17 changed files with 405 additions and 106 deletions

View file

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