summaryrefslogtreecommitdiff
path: root/src/result.rs
blob: 7c607c5508b946d8a9e7ea3144711e511c04c0df (plain)
1
2
3
4
use anyhow;

pub type Error = anyhow::Error;
pub type Result<T> = std::result::Result<T, Error>;