summaryrefslogtreecommitdiffstats
path: root/src/app/query.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/query.rs')
-rw-r--r--src/app/query.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/query.rs b/src/app/query.rs
index 46c40022..0eca1b75 100644
--- a/src/app/query.rs
+++ b/src/app/query.rs
@@ -1,11 +1,11 @@
-use crate::utils::error::{
- BottomError::{self, QueryError},
- Result,
-};
use std::fmt::Debug;
use std::{borrow::Cow, collections::VecDeque};
use super::data_harvester::processes::ProcessHarvest;
+use crate::utils::error::{
+ BottomError::{self, QueryError},
+ Result,
+};
const DELIMITER_LIST: [char; 6] = ['=', '>', '<', '(', ')', '\"'];
const COMPARISON_LIST: [&str; 3] = [">", "=", "<"];