Files
topaz/src/error.rs
T
theMZet 25fd7a370e feat: diff of states
Added first subcommand - diff.
It allows to check how diffrent
current state of machine is in
compareson to world file.
2026-05-30 02:57:56 +02:00

4 lines
112 B
Rust

pub type Error = std::boxed::Box<dyn core::error::Error>;
pub type Result<T> = core::result::Result<T, Error>;