pub async fn supported_providers() -> Vec<String>Expand description
Returns a list of currently supported providers.
ยงExamples
Print the list of supported providers.
use cloud_detect::supported_providers;
#[tokio::main]
async fn main() {
let providers = supported_providers().await;
println!("Supported providers: {:?}", providers);
}