]> git.r.bdr.sh - rbdr/page/blobdiff - src/file_handler/file_strategies/file.rs
Add gemini parsing
[rbdr/page] / src / file_handler / file_strategies / file.rs
index 42b87d5b692cbb382b8571be9c9f0e35eaaea591..8eafdaa898a431fc6dfc530ea351f75676010957 100644 (file)
@@ -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();