summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 15a38074b..fb2361b86 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,13 +1,16 @@
// Lib is present to allow for benchmarking
+pub mod bug_report;
pub mod config;
pub mod configs;
+pub mod configure;
pub mod context;
pub mod formatter;
+pub mod init;
pub mod logger;
pub mod module;
-pub mod modules;
+mod modules;
pub mod print;
-pub mod segment;
+mod segment;
mod utils;
#[cfg(test)]