google-cloud 0.2.1

Asynchronous Rust bindings for Google Cloud Platform gRPC APIs
1
2
3
4
5
6
7
8
9
10
11
mod api;
mod bucket;
mod client;
mod object;

pub use self::bucket::*;
pub use self::client::*;
pub use self::object::*;

/// The error type for the Cloud Storage module.
pub type Error = crate::error::Error;