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:
15
src/main.rs
15
src/main.rs
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user