aboutsummaryrefslogtreecommitdiff
path: root/src/file_handler/file_strategies/layout.rs
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-16 13:46:46 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-16 13:46:46 +0200
commitea5297364f8a1b2c4e684140024b60a83b087b50 (patch)
tree788cabbe2d660ec004009017eb793426d205cf8f /src/file_handler/file_strategies/layout.rs
parent4fd89b808cabc8afb0d75b9700be1da96989c4b7 (diff)
Add static file copying
Diffstat (limited to 'src/file_handler/file_strategies/layout.rs')
-rw-r--r--src/file_handler/file_strategies/layout.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/file_handler/file_strategies/layout.rs b/src/file_handler/file_strategies/layout.rs
index bac1059..21ce9ba 100644
--- a/src/file_handler/file_strategies/layout.rs
+++ b/src/file_handler/file_strategies/layout.rs
@@ -20,5 +20,7 @@ impl FileHandlerStrategy for Strategy {
}
}
- fn handle(&self, _file: &File) {}
+ // We don't implement handling for layout, as we assume there's only one
+ // and it got handled before.
+ fn handle(&self, _s: &PathBuf, _d: &PathBuf, _f: &File) {}
}