summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index f7c3c4f..c4369eb 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,12 +2,12 @@ pub use crate::cli::Cli;
pub use crate::config::Config;
pub use crate::error::{Error, Result};
pub use crate::finder::Finder;
+pub use crate::logging::Logging;
pub use crate::paths::Paths;
-pub mod logging;
-
mod cli;
mod config;
mod error;
mod finder;
+mod logging;
mod paths;