From fe92d86fbe5f73bc2662a128b6431ec2089d05b8 Mon Sep 17 00:00:00 2001 From: Toby Vincent Date: Sun, 20 Nov 2022 18:05:06 -0600 Subject: refactor: remove unnecessary exports --- src/paths.rs | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/paths.rs') 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, -- cgit v1.2.3-70-g09d2