We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90df25a commit 61d3261Copy full SHA for 61d3261
src/app.rs
@@ -1,9 +1,4 @@
1
-use std::{
2
- hash::{DefaultHasher, Hash, Hasher},
3
- path::PathBuf,
4
- sync::{Arc, Mutex},
5
-};
6
-
+use self::{data::Data, data_display_options::DataDisplayOptions};
7
#[cfg(not(target_arch = "wasm32"))]
8
use anyhow::{bail, Context};
9
use data::filter::{Comparator, FieldSpecifier, FilterConfig, FilterOn};
@@ -14,8 +9,11 @@ use egui::{
14
use egui_extras::{Column, TableBuilder};
15
10
use log::info;
16
11
use shortcut::Shortcuts;
17
18
-use self::{data::Data, data_display_options::DataDisplayOptions};
12
+use std::{
13
+ hash::{DefaultHasher, Hash, Hasher},
+ path::PathBuf,
+ sync::{Arc, Mutex},
+};
19
20
mod data;
21
mod data_display_options;
0 commit comments