From 7132370dd29f376c946a3736f432f9f2b71ae00c Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Fri, 29 Aug 2025 11:39:15 -0300 Subject: [PATCH] fix: remove redundant module declarations from main.rs Co-authored-by: aider (openai/andrew/openrouter/google/gemini-2.5-pro) --- src/main.rs | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/src/main.rs b/src/main.rs index f3b04a6..17e759d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,7 +1,3 @@ -mod args; -mod config; -mod modes; -mod services; use anyhow::{Context, Error, Result, anyhow}; use clap::*; @@ -16,19 +12,16 @@ extern crate prettytable; extern crate lazy_static; -pub mod compression_engine; -pub mod db; -pub mod plugins; -pub mod meta_plugin; -pub mod common; extern crate term; extern crate serde_json; extern crate serde_yaml; extern crate serde; -use args::{Args, NumberOrString}; -use config::Settings; +use keep::args::{Args, NumberOrString}; +use keep::config::Settings; +use keep::db; +use keep::modes; /** * Main function to handle command-line arguments and execute the appropriate mode.