1
2
3
4
use std::result;
use crate::Error;

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