chore: cargo fmt
Some checks failed
Run Check Script / check (pull_request) Failing after 37s

This commit is contained in:
2025-08-23 15:48:21 -04:00
parent c805d7e018
commit 6c92dd24f7
10 changed files with 29 additions and 22 deletions

View File

@@ -1,6 +1,6 @@
mod file;
mod id;
mod version;
mod file;
pub use file::*;
pub use id::*;
pub use version::*;
pub use file::*;

View File

@@ -64,7 +64,12 @@ impl<T: Topology + HttpServer> Interpret<T> for StaticFilesHttpInterpret {
Ok(Outcome::success(format!(
"Http Server running and serving files from folder {:?} and content for {}",
self.score.folder_to_serve,
self.score.files.iter().map(|f| f.path.to_string()).collect::<Vec<String>>().join(",")
self.score
.files
.iter()
.map(|f| f.path.to_string())
.collect::<Vec<String>>()
.join(",")
)))
}