#![allow(unexpected_cfgs)]
pub mod config;
pub mod descriptor;
pub mod provider;
pub use config::KubernetesBootstrapConfig;
pub use provider::{KubernetesBootstrapProvider, KubernetesBootstrapProviderBuilder};
#[cfg(feature = "dynamic-plugin")]
drasi_plugin_sdk::export_plugin!(
plugin_id = "kubernetes-bootstrap",
core_version = env!("CARGO_PKG_VERSION"),
lib_version = env!("CARGO_PKG_VERSION"),
plugin_version = env!("CARGO_PKG_VERSION"),
source_descriptors = [],
reaction_descriptors = [],
bootstrap_descriptors = [descriptor::KubernetesBootstrapDescriptor],
);