Add result module

This commit is contained in:
Matthias Beyer 2016-04-17 16:39:05 +02:00
parent fa370facf3
commit 6067ccb46a
1 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1,5 @@
use std::result::Result as RResult;
use error::DiaryError;
pub type Result<T> = RResult<T, DiaryError>;