Skip to content

Commit d4ab0fb

Browse files
committed
chore: cleaned up lib.rs exports
1 parent 1be7817 commit d4ab0fb

File tree

1 file changed

+3
-17
lines changed

1 file changed

+3
-17
lines changed

src/lib.rs

Lines changed: 3 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,12 @@
2020
//! ```
2121
2222
// Public modules - these will be uncommented as they are implemented
23-
// pub mod cli;
23+
pub mod cli;
2424
pub mod database;
25+
pub mod quarantine;
2526
pub mod scanner;
26-
// pub mod quarantine;
2727
pub mod utils;
2828

29-
/// Simple function to demonstrate doctests
30-
///
31-
/// # Examples
32-
///
33-
/// ```
34-
/// use malware_minimizer::add;
35-
///
36-
/// let sum = add(2, 3);
37-
/// assert_eq!(sum, 5);
38-
/// ```
39-
pub fn add(a: i32, b: i32) -> i32 {
40-
a + b
41-
}
42-
4329
/// Version information for the package
4430
///
4531
/// # Examples
@@ -52,4 +38,4 @@ pub fn version() -> &'static str {
5238
env!("CARGO_PKG_VERSION")
5339
}
5440

55-
// More library functions will be added as the project develops
41+
// More library functions will be added as the project develops

0 commit comments

Comments
 (0)