3a9128ec7b
also moved the Result type definition to an extra file/module.
5 lines
121 B
Rust
5 lines
121 B
Rust
use error::{TodoError, TodoErrorKind};
|
|
|
|
use std::result::Result as RResult;
|
|
|
|
pub type Result<T> = RResult<T, TodoError>;
|