aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index 920cd0a3..835ebc86 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,4 +1,3 @@
-use std::env;
use std::path::PathBuf;
use directories::ProjectDirs;
@@ -8,10 +7,9 @@ use uuid::Uuid;
#[macro_use]
extern crate log;
-use pretty_env_logger;
use command::{history::HistoryCmd, import::ImportCmd};
-use local::database::{Database, SqliteDatabase};
+use local::database::SqliteDatabase;
use local::history::History;
mod command;