summaryrefslogtreecommitdiffstats
path: root/libimagnotes/src/result.rs
blob: df40d8c7d13ab0c4076cafb186e454f1acc497a9 (plain)
1
2
3
4
5
6
use std::result::Result as RResult;

use error::NoteError;

pub type Result<T> = RResult<T, NoteError>;