azure_storage_blobs_mirror/
lib.rs

1#[macro_use]
2extern crate serde_derive;
3#[macro_use]
4extern crate azure_core;
5
6pub use azure_core::error::{Error, ErrorKind, ResultExt};
7
8pub mod blob;
9pub mod container;
10pub mod prelude;
11pub mod service;
12
13mod clients;
14mod options;