fix: remove redundant module declarations from main.rs

Co-authored-by: aider (openai/andrew/openrouter/google/gemini-2.5-pro) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-29 11:39:15 -03:00
parent 9a32c68bd8
commit 7132370dd2

View File

@@ -1,7 +1,3 @@
mod args;
mod config;
mod modes;
mod services;
use anyhow::{Context, Error, Result, anyhow}; use anyhow::{Context, Error, Result, anyhow};
use clap::*; use clap::*;
@@ -16,19 +12,16 @@ extern crate prettytable;
extern crate lazy_static; 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 term;
extern crate serde_json; extern crate serde_json;
extern crate serde_yaml; extern crate serde_yaml;
extern crate serde; extern crate serde;
use args::{Args, NumberOrString}; use keep::args::{Args, NumberOrString};
use config::Settings; use keep::config::Settings;
use keep::db;
use keep::modes;
/** /**
* Main function to handle command-line arguments and execute the appropriate mode. * Main function to handle command-line arguments and execute the appropriate mode.