diff --git a/src/helm_client.rs b/src/helm_client.rs index f1fe84b..f1a4bd4 100644 --- a/src/helm_client.rs +++ b/src/helm_client.rs @@ -1,12 +1,12 @@ -use std::process::Command; use fluvio_command::CommandExt; +use std::process::Command; use tracing::{instrument, warn}; -use super::InstallArg; -use super::UninstallArg; -use super::HelmError; use super::Chart; +use super::HelmError; +use super::InstallArg; use super::InstalledChart; +use super::UninstallArg; /// Client to manage helm operations #[derive(Debug)] @@ -171,4 +171,4 @@ fn check_helm_stderr(stderr: Vec) -> Result<(), HelmError> { } Ok(()) -} \ No newline at end of file +} diff --git a/src/install_arg.rs b/src/install_arg.rs index 2d5da63..f5fd0e5 100644 --- a/src/install_arg.rs +++ b/src/install_arg.rs @@ -133,4 +133,3 @@ impl Into for InstallArg { command } } - diff --git a/src/lib.rs b/src/lib.rs index ef96d7f..9bc4149 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,18 +1,17 @@ +mod chart; mod error; -mod install_arg; -mod uninstall_arg; mod helm_client; -mod chart; +mod install_arg; mod installed_chart; +mod uninstall_arg; pub use crate::error::HelmError; -pub use install_arg::InstallArg; -pub use uninstall_arg::UninstallArg; pub use chart::Chart; -pub use installed_chart::InstalledChart; pub use helm_client::HelmClient; - +pub use install_arg::InstallArg; +pub use installed_chart::InstalledChart; +pub use uninstall_arg::UninstallArg; #[cfg(test)] mod tests {