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.