Skip to content

Commit 0742756

Browse files
committed
feat: moved number mod and added tests for the functions
1 parent 0823fbe commit 0742756

File tree

3 files changed

+1507
-639
lines changed

3 files changed

+1507
-639
lines changed

src/implementation/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
use crate::registry::HandlerFn;
22

3+
pub mod boolean;
34
pub mod number;
45

56
pub fn collect() -> Vec<(&'static str, HandlerFn)> {
67
let mut result = vec![];
78

89
result.extend(number::collect_number_functions());
10+
result.extend(boolean::collect_boolean_functions());
911

1012
result
1113
}

0 commit comments

Comments
 (0)