1
2
3
4
5
6
7
use crate::error::Error;

pub mod blob;
pub mod error;
pub mod provider;

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