diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-07 00:26:54 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-07-07 00:26:54 +0200 |
| commit | 179920fa402b81a3ae8cc3c4b415172f71eb8d11 (patch) | |
| tree | 33bd4cb4cceb58ef65ae19a6c8d0f3e4e0ea53ec /src/main.rs | |
| parent | 9b4aa4e9643b0a5b4a554e455eac269a2472b590 (diff) | |
add gui
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 4 |
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(); } } |