1
2
3
use crate::Error;

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