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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//! # Armature GCP
//!
//! Google Cloud Platform services integration with dynamic loading and dependency injection.
//!
//! ## Features
//!
//! Services are loaded dynamically based on feature flags and configuration.
//! Only the services you enable are compiled and loaded.
//!
//! ## Quick Start
//!
//! ```rust,ignore
//! use armature_gcp::{GcpServices, GcpConfig};
//!
//! #[tokio::main]
//! async fn main() -> Result<(), Box<dyn std::error::Error>> {
//! // Configure which services to load
//! let config = GcpConfig::builder()
//! .project_id("my-project")
//! .enable_storage()
//! .enable_pubsub()
//! .build();
//!
//! // Load services
//! let services = GcpServices::new(config).await?;
//!
//! // Use Cloud Storage
//! let storage = services.storage()?;
//!
//! Ok(())
//! }
//! ```
//!
//! ## With Dependency Injection
//!
//! ```rust,ignore
//! use armature::prelude::*;
//! use armature_gcp::{GcpServices, GcpConfig};
//!
//! #[module]
//! struct GcpModule;
//!
//! #[module_impl]
//! impl GcpModule {
//! #[provider(singleton)]
//! async fn gcp_services() -> GcpServices {
//! let config = GcpConfig::from_env()
//! .enable_storage()
//! .enable_pubsub()
//! .build();
//! GcpServices::new(config).await.unwrap()
//! }
//! }
//! ```
pub use ;
pub use ;
pub use GcpServices;
// Re-export enabled service clients
pub use google_cloud_storage;
pub use google_cloud_pubsub;
pub use google_cloud_spanner;
pub use google_cloud_bigquery;