imag/libimaginteraction/src/result.rs

6 lines
118 B
Rust
Raw Normal View History

2016-04-12 14:40:32 +00:00
use std::result::Result as RResult;
use error::InteractionError;
pub type Result<T> = RResult<T, InteractionError>;