Skip to content

Commit

Permalink
Apply cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholastmosher committed Jun 18, 2021
1 parent d883e49 commit 5bd2115
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
10 changes: 5 additions & 5 deletions src/helm_client.rs
Original file line number Diff line number Diff line change
@@ -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)]
Expand Down Expand Up @@ -171,4 +171,4 @@ fn check_helm_stderr(stderr: Vec<u8>) -> Result<(), HelmError> {
}

Ok(())
}
}
1 change: 0 additions & 1 deletion src/install_arg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,3 @@ impl Into<Command> for InstallArg {
command
}
}

13 changes: 6 additions & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down

0 comments on commit 5bd2115

Please sign in to comment.