aboutsummaryrefslogtreecommitdiff
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, 3 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 261008b..fc82739 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -7,6 +7,7 @@ pub mod searchresult;
pub mod filecounter;
pub mod extractors;
pub mod index;
+pub mod gui;
use index::Index;
use std::io::*;
@@ -47,6 +48,7 @@ fn main() {
println!("{}", result.path);
}
}
-
+ } else {
+ let _ = gui::run();
}
}