- fn handle(&self, file: &File) {
- println!("Should copy {}", file.path.display())
+ fn handle_html(&self, source: &PathBuf, destination: &PathBuf, file: &File, _l: &String) {
+ return self.handle(source, destination, file);
+ }
+
+ fn handle_gemini(&self, source: &PathBuf, destination: &PathBuf, file: &File) {
+ return self.handle(source, destination, file);