Add Result type for libimagentryselect
This commit is contained in:
parent
f91d8fe72a
commit
32d463a91d
1 changed files with 6 additions and 0 deletions
6
libimagentryselect/src/result.rs
Normal file
6
libimagentryselect/src/result.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
use std::result::Result as RResult;
|
||||
|
||||
use error::EntrySelectError;
|
||||
|
||||
pub type Result<T> = RResult<T, EntrySelectError>;
|
||||
|
Loading…
Reference in a new issue