4 lines
85 B
Rust
4 lines
85 B
Rust
|
use std::error::Error;
|
||
|
|
||
|
pub type Result<T> = std::result::Result<T, Box<dyn Error>>;
|