feat/fix: add initial MT and remove extend from div for performance

This commit is contained in:
Alivecow 2024-11-29 21:12:42 +01:00
parent 60d73968fb
commit 7dbcf20891
5 changed files with 71 additions and 36 deletions

View file

@ -14,7 +14,7 @@ fn main() -> Result<()> {
let json = fs::read_to_string(path_to_workload).unwrap();
let workload = kauma::utils::parse::parse_json(json)?;
let response = kauma::tasks::task_distrubute(&workload)?;
let response = kauma::tasks::task_distribute(&workload)?;
println!("{}", serde_json::to_string(&response)?);
Ok(())