aboutsummaryrefslogtreecommitdiff
path: root/src/file_handler/file_strategies/file.rs
diff options
context:
space:
mode:
authorRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-16 14:44:48 +0200
committerRuben Beltran del Rio <ruben@unlimited.pizza>2023-04-16 14:44:48 +0200
commit68fa37d61babe8d990ace5f9cb5a7de81eb57ea0 (patch)
tree33820a288918b2a75b77b6ca69a0169ea94b84e5 /src/file_handler/file_strategies/file.rs
parent4cbe65303a0e5d6060c3b608fb69181feda8b8d3 (diff)
Add gemini parsing
Diffstat (limited to 'src/file_handler/file_strategies/file.rs')
-rw-r--r--src/file_handler/file_strategies/file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file_handler/file_strategies/file.rs b/src/file_handler/file_strategies/file.rs
index 42b87d5..8eafdaa 100644
--- a/src/file_handler/file_strategies/file.rs
+++ b/src/file_handler/file_strategies/file.rs
@@ -21,7 +21,7 @@ impl FileHandlerStrategy for Strategy {
}
}
- fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File) {
+ fn handle(&self, source: &PathBuf, destination: &PathBuf, file: &File, _l: &String) {
let relative_path = file.path.strip_prefix(&source).unwrap();
let complete_destination = destination.join(relative_path);
let destination_parent = complete_destination.parent().unwrap();