imag/libimaginteraction/src/result.rs
2016-04-12 16:40:32 +02:00

5 lines
118 B
Rust

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