pub fn supported_providers() -> Result<Vec<String>>Expand description
Returns a list of currently supported providers.
ยงExamples
Print the list of supported providers.
use cloud_detect::blocking::supported_providers;
let providers = supported_providers().unwrap();
println!("Supported providers: {:?}", providers);