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
//! Platform API client module
//!
//! Provides authenticated access to the Syncable Platform API for managing
//! organizations, projects, and other platform resources.
//!
//! # Example
//!
//! ```rust,ignore
//! use syncable_cli::platform::api::PlatformApiClient;
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! let client = PlatformApiClient::new()?;
//!
//! // List organizations
//! let orgs = client.list_organizations().await?;
//! for org in orgs {
//! println!("Organization: {}", org.name);
//! }
//!
//! Ok(())
//! }
//! ```
// Re-export commonly used items
pub use PlatformApiClient;
pub use ;
pub use ;