imag/libimaginteraction/src/result.rs

6 lines
118 B
Rust

use std::result::Result as RResult;
use error::InteractionError;
pub type Result<T> = RResult<T, InteractionError>;