aboutsummaryrefslogtreecommitdiff
path: root/mling/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mling/src/lib.rs')
-rw-r--r--mling/src/lib.rs19
1 files changed, 5 insertions, 14 deletions
diff --git a/mling/src/lib.rs b/mling/src/lib.rs
index 0e122f3..1bf38a7 100644
--- a/mling/src/lib.rs
+++ b/mling/src/lib.rs
@@ -5,23 +5,14 @@ use mingling::{
res::ResExitCode,
};
-pub mod cli;
-pub use cli::*;
-
mod cargo_style;
pub use cargo_style::*;
+
+pub mod cli;
pub mod display;
+pub mod errors;
+pub mod pkg_mgr;
+pub mod proj_mgr;
pub mod res;
-mod pkg_mgr;
-pub use pkg_mgr::*;
-
-mod proj_mgr;
-pub use proj_mgr::*;
-
-mod errors;
-pub use errors::*;
-
-use crate::display::markdown;
-
gen_program!();