summaryrefslogtreecommitdiffstats
path: root/src/finder.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-20 18:05:06 -0600
committerToby Vincent <tobyv13@gmail.com>2022-11-20 18:05:06 -0600
commitfe92d86fbe5f73bc2662a128b6431ec2089d05b8 (patch)
tree8301319ece23fad3142f4b9af196cce2780936b9 /src/finder.rs
parentb1438bd27d32e4e2530825026cc39a8ac5456f68 (diff)
refactor: remove unnecessary exports
Diffstat (limited to 'src/finder.rs')
-rw-r--r--src/finder.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/finder.rs b/src/finder.rs
index ad7e303..3c74417 100644
--- a/src/finder.rs
+++ b/src/finder.rs
@@ -7,8 +7,8 @@ use std::{
process::{Child, Command, Output, Stdio},
};
-pub use config::Config;
-pub use error::{Error, Result};
+pub(crate) use config::Config;
+pub(crate) use error::{Error, Result};
mod config;
mod error;