blob: cf1bb9ff9a7f86b3511093cd1ec43cba1f55ba51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
pub struct Strategy {}
use std::path::PathBuf;
use crate::file_handler::{FileType, FileHandlerStrategy};
impl FileHandlerStrategy for Strategy {
fn is(&self, path: &PathBuf) -> bool {
return !path.is_dir() && path.ends_with("_layout.html");
}
fn identify(&self) -> FileType {
FileType::Layout
}
fn can_handle(&self, path: &PathBuf) -> bool {
self.is(path)
}
fn handle(&self, path: &PathBuf) {
println!("Should convert {}", path.display())
}
}
|