4 lines
78 B
Rust
4 lines
78 B
Rust
use crate::error::Error;
|
|
|
|
pub type Result<A> = std::result::Result<A, Error>;
|