podal/src/prelude.rs

4 lines
79 B
Rust
Raw Normal View History

2023-07-25 10:46:47 +01:00
use crate::errors::Error;
pub type Result<T> = std::result::Result<T, Error>;