reorder run params & update README
All checks were successful
Run Check Script / check (pull_request) Successful in -49s

This commit is contained in:
Ian Letourneau
2025-08-04 16:56:19 -04:00
parent eab27b1f66
commit acf7e2f8b8
9 changed files with 44 additions and 45 deletions

View File

@@ -87,8 +87,8 @@ fn list_scores_with_index<T: Topology>(scores_vec: &Vec<Box<dyn Score<T>>>) -> S
}
pub async fn run<T: Topology + Send + Sync + 'static>(
topology: T,
inventory: Inventory,
topology: T,
scores: Vec<Box<dyn Score<T>>>,
args_struct: Option<Args>,
) -> Result<(), Box<dyn std::error::Error>> {