Add result module

This commit is contained in:
Matthias Beyer 2016-04-17 16:39:05 +02:00
parent fa370facf3
commit 6067ccb46a

View file

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