From 3e865660e4f4f8fa58985368657b78f6b72862b4 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 12 Aug 2025 15:59:07 -0300 Subject: [PATCH] fix: remove duplicate mod declaration and add missing common module file Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/common/mod.rs | 2 ++ src/main.rs | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 src/common/mod.rs diff --git a/src/common/mod.rs b/src/common/mod.rs new file mode 100644 index 0000000..83c7b88 --- /dev/null +++ b/src/common/mod.rs @@ -0,0 +1,2 @@ +pub mod is_binary; +pub mod is_binary; diff --git a/src/main.rs b/src/main.rs index d2f296a..ca2d0b6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,6 @@ extern crate serde_json; extern crate serde_yaml; extern crate serde; -mod common; /** * Main struct for command-line arguments.