1 2 3 4
use crate::utils::error::Error; /// custom error Result pub type Result<T> = std::result::Result<T, Error>;