1 2 3 4 5 6 7 8 9 10 11 12 13
//! Credential providers for cloud services pub mod aws; pub mod azure; pub mod cache; pub mod gcp; pub mod github; pub use aws::AwsCredentials; pub use azure::AzureCredentials; pub use cache::CredentialCache; pub use gcp::GcpCredentials; pub use github::GithubCredentials;