imag/libimagtodo/src/result.rs
mario 3a9128ec7b various fixes like indentation and function names.
also moved the Result type definition to an extra file/module.
2016-06-28 20:30:54 +02:00

5 lines
121 B
Rust

use error::{TodoError, TodoErrorKind};
use std::result::Result as RResult;
pub type Result<T> = RResult<T, TodoError>;