mod container_client;
mod cosmos_client;
mod cosmos_client_builder;
mod database_client;
pub(crate) mod offers_client;
mod throughput_poller;
use std::sync::Arc;
use azure_data_cosmos_driver::CosmosDriver;
#[derive(Clone, Debug)]
pub(crate) struct ClientContext {
pub(crate) driver: Arc<CosmosDriver>,
}
pub use container_client::ContainerClient;
pub use cosmos_client::CosmosClient;
pub use cosmos_client_builder::CosmosClientBuilder;
pub use database_client::DatabaseClient;
pub use throughput_poller::ThroughputPoller;