aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 830c912..af1a2fb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,7 @@
pub use crate::config::Config;
-pub use crate::search::SearchBuilder;
+pub use crate::search::Search;
+pub mod config;
pub mod parser;
pub mod project;
pub mod search;
@@ -8,5 +9,3 @@ pub mod search;
#[cfg(feature = "git")]
pub mod git;
pub mod path;
-
-pub mod config;