Add result type

This commit is contained in:
Matthias Beyer 2016-02-04 14:05:37 +01:00
parent 15b1adbc20
commit 5512e2c86c
1 changed files with 6 additions and 0 deletions

View File

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