strois 0.0.4

S3 synchronous SDK based on rusty_s3 and ureq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]

mod bucket;
mod builder;
mod client;
mod error;

pub use bucket::Bucket;
pub use builder::Builder;
pub use client::Client;
pub use error::*;

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