cloud-seed 0.1.0

Fetch user-data from a cloud provider and write files described within to the filesystem
pub mod helpers;

#[cfg(feature = "source-alibaba")]
pub mod alibaba;
#[cfg(feature = "source-amazon")]
pub mod amazon;
#[cfg(feature = "source-exoscale")]
pub mod exoscale;
#[cfg(feature = "source-google")]
pub mod google;
#[cfg(feature = "source-openstack")]
pub mod openstack;
#[cfg(feature = "source-oracle")]
pub mod oracle;
#[cfg(feature = "source-vultr")]
pub mod vultr;

#[async_trait::async_trait]
pub trait Source: std::fmt::Debug {
  async fn try_fetch(&self) -> anyhow::Result<Option<String>>;
}