summaryrefslogtreecommitdiffstats
path: root/src/paths.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/paths.rs
parentb1438bd27d32e4e2530825026cc39a8ac5456f68 (diff)
refactor: remove unnecessary exports
Diffstat (limited to 'src/paths.rs')
-rw-r--r--src/paths.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/paths.rs b/src/paths.rs
index 9b9963a..b53eb93 100644
--- a/src/paths.rs
+++ b/src/paths.rs
@@ -3,11 +3,14 @@ use ignore::{Walk, WalkBuilder};
use std::{path::PathBuf, vec::IntoIter};
use tracing::warn;
-pub use config::{Config, PathEntry};
-pub use error::{Error, Result};
+pub(crate) use config::Config;
+pub(crate) use error::{Error, Result};
+
+pub use path_entry::PathEntry;
mod config;
mod error;
+mod path_entry;
pub struct Paths {
paths_iter: IntoIter<PathEntry>,