1 2 3 4 5 6 7 8 9 10
//! Google Docs API client library for ADI. pub use client::{Client, ClientBuilder}; pub use error::{Error, Result}; pub use lib_client_google_auth::{ApiKeyAuth, AuthStrategy, OAuth2Auth, ServiceAccountAuth}; pub use types::*; mod client; mod error; mod types;