1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//! # OCI API
//!
//! Oracle Cloud Infrastructure (OCI) API client for Rust.
//!
//! ## Features
//!
//! - Environment variable-based authentication
//! - Email Delivery service support
//! - Async I/O (tokio)
//!
//! ## Quick Start
//!
//! ```no_run
//! use oci_api::Oci;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! // Load configuration from environment variables
//! let oci = Oci::from_env()?;
//!
//! Ok(())
//! }
//! ```
// Module declarations
// Re-exports for convenient imports
pub use Oci;
pub use ;
// Re-export email module to allow `oci_api::email::*` (without `services`)
pub use email;
pub use object_storage;
// Re-export async_trait for downstream mock implementations
pub use async_trait;