ad_blob_test 0.1.0

An API wrapper around various cloud blob storage services
Documentation
1
2
3
4
5
6
7
pub mod wasabi;

// Base trait that all Blob storage services must implement
pub trait BlobStorageBase {
    fn get(&self, bucket: &str, key: &str) -> Result<Vec<u8>, anyhow::Error>;
    fn put(&self, key: &str, bytes: Vec<u8>) -> Result<(), anyhow::Error>;
}