Skip to content

Commit 592b6ce

Browse files
Add DashMap and Group module to Build.rs
1 parent 4fd941a commit 592b6ce

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Source/Fn/Build.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
use dashmap::DashMap;
2+
13
pub async fn Fn(Entry:&str) -> Result<DashMap<u64, (String, String)>, Box<dyn std::error::Error>> {
24
let Build = DashMap::new();
35

46
Ok(Build)
57
}
8+
9+
pub mod Group {
10+
pub fn Fn(output: Vec<(String, String)>) {
11+
println!("Processed {} files", output.len());
12+
}
13+
}

0 commit comments

Comments
 (0)