1//! This is the main application Result type.
2//! This should be used instead of anyhow::Result.
34use crate::error::RustiumError;
56/// Custom Result type to use with app-specific errors
7/// A replacement for anyhow::
8pub type RustiumResult<T> = core::result::Result<T, RustiumError>;