From aae7a78e579266b524f508635ba29b210e47bb5e Mon Sep 17 00:00:00 2001 From: Michal Date: Sat, 23 Jul 2022 04:32:30 +0100 Subject: [PATCH] an fmt for the night --- src/operations/info.rs | 2 +- src/operations/mod.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/operations/info.rs b/src/operations/info.rs index e700e0f..a4080e2 100644 --- a/src/operations/info.rs +++ b/src/operations/info.rs @@ -3,4 +3,4 @@ use crate::log; pub fn info(verbose: bool) { log!(verbose, "Showing Info"); unimplemented!(); -} \ No newline at end of file +} diff --git a/src/operations/mod.rs b/src/operations/mod.rs index 775ed89..82a8a46 100644 --- a/src/operations/mod.rs +++ b/src/operations/mod.rs @@ -2,14 +2,14 @@ pub use build::*; pub use clean::*; pub use clone::*; pub use config::*; +pub use info::*; pub use prune::*; pub use pull::*; -pub use info::*; mod build; mod clean; mod clone; mod config; +mod info; mod prune; mod pull; -mod info;